diff --git a/migrate_data/Local.testsettings b/migrate_data/Local.testsettings new file mode 100644 index 0000000..e8ae8f1 --- /dev/null +++ b/migrate_data/Local.testsettings @@ -0,0 +1,10 @@ + + + These are default test settings for a local test run. + + + + + + + \ No newline at end of file diff --git a/migrate_data/TraceAndTestImpact.testsettings b/migrate_data/TraceAndTestImpact.testsettings new file mode 100644 index 0000000..0ccab67 --- /dev/null +++ b/migrate_data/TraceAndTestImpact.testsettings @@ -0,0 +1,9 @@ + + + These are test settings for Trace and Test Impact. + + + + + + \ No newline at end of file diff --git a/migrate_data/acc_pgsql/FileHelper.cs b/migrate_data/acc_pgsql/FileHelper.cs new file mode 100644 index 0000000..9fc2909 --- /dev/null +++ b/migrate_data/acc_pgsql/FileHelper.cs @@ -0,0 +1,41 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.IO; + +namespace acc_pgsql +{ + public static class FileHelper + { + public static string ReadFile(string path) + { + return File.ReadAllText(path); + } + + public static void AppendTxt(string path, string text) + { + if (!File.Exists(path)) + File.Create(path); + File.AppendAllText(path, text); + } + + public static void AppendTxt(string path, List text) + { + foreach (string t in text) + AppendTxt(path, t); + } + + public static void Log(string message, bool isError = false) + { + string dir = Environment.CurrentDirectory; + dir = Path.Combine(dir, "logs"); + string path = string.Empty; + if (isError) + path = Path.Combine(dir, "error.log"); + else + path = Path.Combine(dir, "success.log"); + AppendTxt(path, message); + } + } +} diff --git a/migrate_data/acc_pgsql/InitialSeedData.sql b/migrate_data/acc_pgsql/InitialSeedData.sql new file mode 100755 index 0000000..7c1c567 --- /dev/null +++ b/migrate_data/acc_pgsql/InitialSeedData.sql @@ -0,0 +1,633 @@ +Delete From "Deviation"; +Delete From "Application"; +Delete From "Engine"; +Delete From "Model"; +Delete From "Product"; +Delete From "Make"; +Delete From "Bom"; +Delete From "DesignSpec"; +Delete From "CustomerSpec"; +Delete From "Document"; +Delete From "XCustomerPartNumber"; +Delete From "CustomerPrint"; +Delete From "PartNumber"; +Delete From "Vendor"; +Delete From "Customer"; + +Delete From "Location"; +Delete From "PartCode"; +Delete From "PartType"; +Delete From "Status"; + +--Status +Insert Into "Status"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(1, 'Active', now(), -1, now(), -1); +Insert Into "Status"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(2, 'Obsolete', now(), -1, now(), -1); +Insert Into "Status"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(3, 'Approved', now(), -1, now(), -1); +Insert Into "Status"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(4, 'In Process', now(), -1, now(), -1); +Insert Into "Status"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(5, 'Submitted for FAC', now(), -1, now(), -1); +Insert Into "Status"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(6, 'Submitted for Approval', now(), -1, now(), -1); + +--PartType +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(1, 'Built motor', 100000, 189999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(2, 'Upfit kit', 190000, 199999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(3, 'MultiVac kit', 310000, 319999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(4, 'SCET', 300000, 309999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(5, 'Controlled document', 10000, 99999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(6, 'General', 100600, 189999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(7, 'Experimental', 700000, 709999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(8, 'Tooling', 800000, 809999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(9, 'Core', 980000, 989999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(0, 'N/A', 0, 0, now(), -1, now(), -1); + +--PartCode + +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(2, 'Cart', now(), -1, now(), -1, 6, '13-0', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(72, 'Adapter', now(), -1, now(), -1, 6, '4-10', true, false, 69); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(297, 'Other', now(), -1, now(), -1, 0, null, true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(1, 'Tooling', now(), -1, now(), -1, 6, '13', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(3, 'Table', now(), -1, now(), -1, 6, '13-1', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(4, 'Half Clean', now(), -1, now(), -1, 6, '13-10', true, false, 3); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(5, 'Half Used', now(), -1, now(), -1, 6, '13-11', true, false, 3); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(6, 'Full', now(), -1, now(), -1, 6, '13-12', true, false, 3); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(7, 'Skids', now(), -1, now(), -1, 6, '13-2', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(8, 'Power Gen', now(), -1, now(), -1, 6, '13-20', true, false, 7); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(9, '60 Gallon', now(), -1, now(), -1, 6, '13-200', true, false, 8); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(10, '80 Gallon', now(), -1, now(), -1, 6, '13-201', true, false, 8); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(11, '80 Gallon Short', now(), -1, now(), -1, 6, '13-202', true, false, 8); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(12, '100 Gallon', now(), -1, now(), -1, 6, '13-203', true, false, 8); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(13, 'Construction', now(), -1, now(), -1, 6, '13-21', true, false, 7); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(14, '60 Gallon', now(), -1, now(), -1, 6, '13-210', true, false, 13); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(15, '90 Gallon', now(), -1, now(), -1, 6, '13-211', true, false, 13); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(16, '120 Gallon', now(), -1, now(), -1, 6, '13-212', true, false, 13); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(17, '150 Gallon', now(), -1, now(), -1, 6, '13-213', true, false, 13); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(18, 'Trailer', now(), -1, now(), -1, 6, '13-3', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(19, 'Power Gen', now(), -1, now(), -1, 6, '13-30', true, false, 18); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(20, '150 Gallon', now(), -1, now(), -1, 6, '13-300', true, false, 19); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(21, '400 Gallon', now(), -1, now(), -1, 6, '13-301', true, false, 19); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(22, 'Construction', now(), -1, now(), -1, 6, '13-31', true, false, 18); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(23, 'Pulse', now(), -1, now(), -1, 6, '13-4', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(24, 'Hub', now(), -1, now(), -1, 6, '13-40', true, false, 23); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(25, 'Extender', now(), -1, now(), -1, 6, '13-41', true, false, 23); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(26, 'Remote Extender', now(), -1, now(), -1, 6, '13-42', true, false, 23); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(27, 'Tank Level Monitor', now(), -1, now(), -1, 6, '13-43', true, false, 23); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(28, 'Meter', now(), -1, now(), -1, 6, '13-44', true, false, 23); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(29, 'Roll Around', now(), -1, now(), -1, 6, '13-45', true, false, 23); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(30, 'Reels', now(), -1, now(), -1, 6, '13-5', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(31, '3/8"', now(), -1, now(), -1, 6, '13-50', true, false, 30); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(32, '1/2"', now(), -1, now(), -1, 6, '13-51', true, false, 30); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(33, '3/4"', now(), -1, now(), -1, 6, '13-52', true, false, 30); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(34, '1"', now(), -1, now(), -1, 6, '13-53', true, false, 30); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(35, '1-1/4"', now(), -1, now(), -1, 6, '13-54', true, false, 30); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(36, '1-1/2"', now(), -1, now(), -1, 6, '13-55', true, false, 30); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(37, 'Pump', now(), -1, now(), -1, 6, '13-6', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(38, 'AC', now(), -1, now(), -1, 6, '13-60', true, false, 37); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(39, 'Diaphragm', now(), -1, now(), -1, 6, '13-600', true, false, 38); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(40, 'Gear', now(), -1, now(), -1, 6, '13-601', true, false, 38); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(41, 'DC', now(), -1, now(), -1, 6, '13-61', true, false, 37); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(42, 'Diaphragm', now(), -1, now(), -1, 6, '13-610', true, false, 41); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(43, 'Gear', now(), -1, now(), -1, 6, '13-611', true, false, 41); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(44, 'Pneumatic', now(), -1, now(), -1, 6, '13-62', true, false, 37); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(45, 'Diaphragm', now(), -1, now(), -1, 6, '13-620', true, false, 44); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(46, 'Piston', now(), -1, now(), -1, 6, '13-621', true, false, 44); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(47, 'AC8', now(), -1, now(), -1, 6, '13-6010', true, false, 40); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(48, 'SCET', now(), -1, now(), -1, 6, '13-6110', true, false, 43); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(49, 'Meters', now(), -1, now(), -1, 6, '13-7', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(50, 'Digital', now(), -1, now(), -1, 6, '13-70', true, false, 49); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(51, 'Mechanical', now(), -1, now(), -1, 6, '13-71', true, false, 49); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(52, 'Tool', now(), -1, now(), -1, 6, '13-8', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(53, 'Conversion Kit', now(), -1, now(), -1, 6, '13-80', true, false, 52); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(54, 'Purge Tool', now(), -1, now(), -1, 6, '13-81', true, false, 52); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(55, 'Sample Tool', now(), -1, now(), -1, 6, '13-82', true, false, 52); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(56, 'Activation Tool', now(), -1, now(), -1, 6, '13-83', true, false, 52); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(57, 'Prelub', now(), -1, now(), -1, 6, '2', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(58, 'Kits', now(), -1, now(), -1, 6, '3', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(59, 'QuickEvac', now(), -1, now(), -1, 2, '3-0', true, true, 58); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(60, 'QuickFit', now(), -1, now(), -1, 4, '3-1', true, true, 58); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(61, 'MultiVac', now(), -1, now(), -1, 3, '3-2', true, true, 58); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(62, 'MCES', now(), -1, now(), -1, 4, '3-3', true, true, 58); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(63, 'SCET', now(), -1, now(), -1, 4, '3-4', true, true, 58); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(64, 'Prelub', now(), -1, now(), -1, 2, '3-5', true, true, 58); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(65, 'Electrical', now(), -1, now(), -1, 6, '3-6', true, true, 58); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(66, 'Plumbing', now(), -1, now(), -1, 6, '3-7', true, true, 58); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(67, 'Components', now(), -1, now(), -1, 6, '4', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(68, 'Electrical', now(), -1, now(), -1, 6, '4-0', true, false, 67); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(69, 'Plumbing', now(), -1, now(), -1, 6, '4-1', true, false, 67); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(70, 'Hardware', now(), -1, now(), -1, 6, '4-2', true, false, 67); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(71, 'Brackets', now(), -1, now(), -1, 6, '4-3', true, false, 67); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(73, 'Hose', now(), -1, now(), -1, 6, '4-11', true, true, 69); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(74, 'Valve', now(), -1, now(), -1, 6, '4-12', true, true, 69); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(75, 'Filter Adapter', now(), -1, now(), -1, 6, '4-13', true, true, 69); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(76, 'Seal', now(), -1, now(), -1, 6, '4-14', true, true, 69); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(77, 'Plate', now(), -1, now(), -1, 6, '4-15', true, true, 69); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(78, 'Straight', now(), -1, now(), -1, 6, '4-100', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(79, 'Elbow', now(), -1, now(), -1, 6, '4-101', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(80, 'Tee', now(), -1, now(), -1, 6, '4-102', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(81, 'Cross', now(), -1, now(), -1, 6, '4-103', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(82, 'Cap', now(), -1, now(), -1, 6, '4-104', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(83, 'Plug', now(), -1, now(), -1, 6, '4-105', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(84, 'Banjo', now(), -1, now(), -1, 6, '4-106', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(85, 'Hose End', now(), -1, now(), -1, 6, '4-107', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(86, 'Bolt', now(), -1, now(), -1, 6, '4-20', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(87, 'Screw', now(), -1, now(), -1, 6, '4-21', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(88, 'Nut', now(), -1, now(), -1, 6, '4-22', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(89, 'Washer', now(), -1, now(), -1, 6, '4-23', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(90, 'Assembly', now(), -1, now(), -1, 6, '4-110', true, true, 73); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(91, 'Socketless', now(), -1, now(), -1, 6, '4-111', true, false, 73); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(92, 'Heavy Duty', now(), -1, now(), -1, 6, '4-112', true, false, 73); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(93, 'Marine', now(), -1, now(), -1, 6, '4-113', true, false, 73); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(216, 'Firesleeve', now(), -1, now(), -1, 6, '4-113', true, true, 73); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(94, 'Check', now(), -1, now(), -1, 6, '4-120', true, true, 74); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(95, 'Ball', now(), -1, now(), -1, 6, '4-121', true, true, 74); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(96, 'Filter Ring', now(), -1, now(), -1, 6, '4-130', true, true, 75); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(97, 'Nipple', now(), -1, now(), -1, 6, '4-131', true, true, 75); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(98, 'O-Ring', now(), -1, now(), -1, 6, '4-140', true, true, 76); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(99, 'Gasket', now(), -1, now(), -1, 6, '4-141', true, true, 76); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(100, 'Dowty', now(), -1, now(), -1, 6, '4-142', true, true, 76); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(101, 'Copper', now(), -1, now(), -1, 6, '4-143', true, true, 76); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(102, 'Labor', now(), -1, now(), -1, 6, '5', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(103, 'Kit', now(), -1, now(), -1, 6, '5-0', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(104, 'Hose', now(), -1, now(), -1, 6, '5-1', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(105, 'Tooling', now(), -1, now(), -1, 6, '5-2', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(106, 'Installation', now(), -1, now(), -1, 6, '5-3', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(107, 'Training', now(), -1, now(), -1, 6, '5-4', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(108, 'Overhead', now(), -1, now(), -1, 6, '6', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(109, 'Kit', now(), -1, now(), -1, 6, '6-0', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(110, 'Hose', now(), -1, now(), -1, 6, '6-1', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(111, 'Tooling', now(), -1, now(), -1, 6, '6-2', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(112, 'Installation', now(), -1, now(), -1, 6, '6-3', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(113, 'Training', now(), -1, now(), -1, 6, '6-4', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(114, 'Warranty', now(), -1, now(), -1, 6, '7', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(115, 'Financial', now(), -1, now(), -1, 6, '8', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(116, 'Core', now(), -1, now(), -1, 9, '9', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(117, 'Motor', now(), -1, now(), -1, 6, '5-5', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(278, 'Motor', now(), -1, now(), -1, 6, '5-5', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(118, 'Remote', now(), -1, now(), -1, 6, '5-6', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(279, 'Switch', now(), -1, now(), -1, 6, '5-6', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(119, 'Switch', now(), -1, now(), -1, 6, '5-7', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(120, 'Motor', now(), -1, now(), -1, 6, '6-5', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(282, 'Motor', now(), -1, now(), -1, 6, '6-5', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(121, 'Remote', now(), -1, now(), -1, 6, '6-6', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(283, 'Switch', now(), -1, now(), -1, 6, '6-6', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(122, 'Switch', now(), -1, now(), -1, 6, '6-7', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(123, 'ConnexionMobile', now(), -1, now(), -1, 6, '10', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(124, 'Controls', now(), -1, now(), -1, 6, '4-01', true, false, 68); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(125, 'Wiring', now(), -1, now(), -1, 6, '4-02', true, false, 68); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(126, 'Wiring Harness', now(), -1, now(), -1, 6, '4-03', true, true, 68); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(127, 'Switches', now(), -1, now(), -1, 6, '4-010', true, false, 124); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(128, 'Relay', now(), -1, now(), -1, 6, '4-011', true, true, 124); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(129, 'Timer', now(), -1, now(), -1, 6, '4-012', true, true, 124); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(130, 'Switch/Timer', now(), -1, now(), -1, 6, '4-013', true, true, 124); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(131, 'Circuit Board', now(), -1, now(), -1, 6, '4-014', true, true, 124); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(132, 'Controller', now(), -1, now(), -1, 6, '4-015', true, true, 124); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(133, 'Wire', now(), -1, now(), -1, 6, '4-020', true, true, 125); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(134, 'Connector', now(), -1, now(), -1, 6, '4-021', true, true, 125); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(135, 'Conduit', now(), -1, now(), -1, 6, '4-022', true, true, 125); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(136, 'Fuse', now(), -1, now(), -1, 6, '4-023', true, true, 125); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(137, 'Components', now(), -1, now(), -1, 6, '4-024', true, true, 125); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(138, 'Heat Shrink', now(), -1, now(), -1, 6, '4-025', true, true, 125); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(139, 'Main', now(), -1, now(), -1, 6, '4-030', true, true, 126); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(140, 'Keyswitch', now(), -1, now(), -1, 6, '4-031', true, true, 126); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(141, 'Sensor', now(), -1, now(), -1, 6, '4-032', true, true, 126); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(142, 'Extension', now(), -1, now(), -1, 6, '4-033', true, true, 126); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(143, 'Sensor', now(), -1, now(), -1, 6, '4-016', true, true, 124); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(144, 'Deutsch', now(), -1, now(), -1, 6, '4-0210', true, true, 134); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(145, 'Sure Seal', now(), -1, now(), -1, 6, '4-0211', true, true, 134); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(146, 'Packard', now(), -1, now(), -1, 6, '4-0212', true, true, 134); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(147, 'Cinch', now(), -1, now(), -1, 6, '4-0213', true, true, 134); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(148, 'Molex', now(), -1, now(), -1, 6, '4-0214', true, true, 134); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(149, 'Ring Terminal', now(), -1, now(), -1, 6, '4-0215', true, true, 134); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(150, 'Quick Disconnect', now(), -1, now(), -1, 6, '4-108', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(251, 'Special Fitting', now(), -1, now(), -1, 6, '4-108', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(151, 'Pickup Tube', now(), -1, now(), -1, 6, '4-109', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(152, 'Controlled Document', now(), -1, now(), -1, 5, '11', true, true, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(153, 'Built', now(), -1, now(), -1, 6, '2-0', true, false, 57); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(154, 'Unbuilt', now(), -1, now(), -1, 6, '2-1', true, false, 57); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(155, 'Components', now(), -1, now(), -1, 6, '2-2', true, false, 57); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(156, 'Armature', now(), -1, now(), -1, 6, '2-20', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(157, 'Bearing', now(), -1, now(), -1, 6, '2-21', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(158, 'Brush', now(), -1, now(), -1, 6, '2-22', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(159, 'Brush Holder', now(), -1, now(), -1, 6, '2-23', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(160, 'Brush Plate Assembly', now(), -1, now(), -1, 6, '2-24', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(161, 'Bushing', now(), -1, now(), -1, 6, '2-25', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(162, 'Cartridge', now(), -1, now(), -1, 6, '2-26', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(163, 'CE Plate', now(), -1, now(), -1, 6, '2-27', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(164, 'Crank Solenoid', now(), -1, now(), -1, 6, '2-28', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(165, 'Cup', now(), -1, now(), -1, 6, '2-29', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(166, 'Drive', now(), -1, now(), -1, 6, '2-210', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(167, 'Field', now(), -1, now(), -1, 6, '2-211', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(168, 'Field Housing', now(), -1, now(), -1, 6, '2-212', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(169, 'Frame', now(), -1, now(), -1, 6, '2-213', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(170, 'Frame & Field', now(), -1, now(), -1, 6, '2-214', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(171, 'Gear', now(), -1, now(), -1, 6, '2-215', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(172, 'Ground Strap', now(), -1, now(), -1, 6, '2-216', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(173, 'Ground Stud', now(), -1, now(), -1, 6, '2-217', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(174, 'Inspection Plug', now(), -1, now(), -1, 6, '2-218', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(175, 'Insulation', now(), -1, now(), -1, 6, '2-219', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(176, 'Insulator', now(), -1, now(), -1, 6, '2-220', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(177, 'Key', now(), -1, now(), -1, 6, '2-221', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(178, 'Lever', now(), -1, now(), -1, 6, '2-222', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(179, 'Lever Housing', now(), -1, now(), -1, 6, '2-223', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(180, 'Pump Lid', now(), -1, now(), -1, 6, '2-224', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(181, 'Motor Adapter Plate', now(), -1, now(), -1, 6, '2-225', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(182, 'Nose Housing', now(), -1, now(), -1, 6, '2-226', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(183, 'Pin', now(), -1, now(), -1, 6, '2-227', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(184, 'Pole Shoe', now(), -1, now(), -1, 6, '2-228', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(185, 'Pump', now(), -1, now(), -1, 6, '2-229', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(186, 'Pump Casting', now(), -1, now(), -1, 6, '2-230', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(187, 'Pump Lid Casting', now(), -1, now(), -1, 6, '2-231', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(188, 'Pump Lid Gasket', now(), -1, now(), -1, 6, '2-232', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(189, 'Shaft', now(), -1, now(), -1, 6, '2-233', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(190, 'Wick', now(), -1, now(), -1, 6, '2-234', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(191, 'Motor - AC', now(), -1, now(), -1, 6, '2-235', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(192, 'Motor - DC', now(), -1, now(), -1, 6, '2-236', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(193, 'OE', now(), -1, now(), -1, 6, '2-00', true, false, 153); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(194, 'Reman', now(), -1, now(), -1, 6, '2-01', true, false, 153); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(195, 'Remote', now(), -1, now(), -1, 6, '2-000', true, false, 193); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(196, 'Starter', now(), -1, now(), -1, 6, '2-001', true, false, 193); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(197, 'Remote', now(), -1, now(), -1, 6, '2-010', true, false, 194); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(198, 'Starter', now(), -1, now(), -1, 6, '2-011', true, false, 194); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(199, 'AC', now(), -1, now(), -1, 6, '2-0000', true, false, 195); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(200, 'DC', now(), -1, now(), -1, 6, '2-0001', true, false, 195); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(201, 'P1K', now(), -1, now(), -1, 6, '2-00010', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(202, 'P2K', now(), -1, now(), -1, 6, '2-00011', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(203, 'P3K', now(), -1, now(), -1, 6, '2-00012', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(204, 'P3KHD', now(), -1, now(), -1, 6, '2-00013', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(205, 'P4K10', now(), -1, now(), -1, 6, '2-00014', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(206, 'P4K20', now(), -1, now(), -1, 6, '2-00015', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(207, 'P4K40', now(), -1, now(), -1, 6, '2-00016', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(208, 'P4L20', now(), -1, now(), -1, 6, '2-00017', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(209, 'P4L40', now(), -1, now(), -1, 6, '2-00018', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(210, 'HVP', now(), -1, now(), -1, 6, '2-00019', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(211, '40RM', now(), -1, now(), -1, 6, '2-000110', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(212, '41RM', now(), -1, now(), -1, 6, '2-000111', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(213, 'DC', now(), -1, now(), -1, 6, '2-0010', true, false, 202); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(214, '42MT', now(), -1, now(), -1, 6, '2-00100', true, false, 213); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(215, '50MT', now(), -1, now(), -1, 6, '2-00101', true, false, 213); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(217, 'Mag Switch', now(), -1, now(), -1, 6, '4-0100', true, true, 127); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(218, 'Pressure Switch', now(), -1, now(), -1, 6, '4-0101', true, true, 127); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(219, 'Grommet', now(), -1, now(), -1, 6, '4-24', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(220, 'Pneumatics', now(), -1, now(), -1, 6, '4-4', true, true, 67); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(221, 'Compressor', now(), -1, now(), -1, 6, '4-40', true, true, 220); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(222, 'Compressor Accessory', now(), -1, now(), -1, 6, '4-41', true, true, 220); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(223, 'Clamp', now(), -1, now(), -1, 6, '4-25', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(224, 'New Take Off', now(), -1, now(), -1, 9, '9-0', true, false, 116); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(225, 'Tag', now(), -1, now(), -1, 6, '4-50', true, true, 231); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(226, 'Remote Bracket', now(), -1, now(), -1, 6, '2-237', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(227, 'Snap Ring', now(), -1, now(), -1, 6, '4-27', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(228, 'Spacer', now(), -1, now(), -1, 6, '4-28', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(229, 'Rivet', now(), -1, now(), -1, 6, '4-29', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(230, 'Spring', now(), -1, now(), -1, 6, '4-210', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(231, 'Marking', now(), -1, now(), -1, 6, '4-5', true, false, 67); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(232, 'Manifold', now(), -1, now(), -1, 6, '4-16', true, true, 69); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(233, 'Components', now(), -1, now(), -1, 6, '13-9', true, false, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(234, 'Containment', now(), -1, now(), -1, 6, '13-90', true, true, 233); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(235, 'Tank', now(), -1, now(), -1, 6, '13-91', true, true, 233); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(236, 'Filter Box', now(), -1, now(), -1, 6, '13-92', true, true, 233); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(237, 'Reel Box', now(), -1, now(), -1, 6, '13-93', true, true, 233); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(238, 'Spill Box', now(), -1, now(), -1, 6, '13-94', true, true, 233); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(239, 'Battery Box', now(), -1, now(), -1, 6, '13-95', true, true, 233); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(240, 'Sticker', now(), -1, now(), -1, 6, '4-51', true, true, 231); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(241, '12V', now(), -1, now(), -1, 6, '4-01000', true, false, 217); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(242, '24V', now(), -1, now(), -1, 6, '4-01001', true, false, 217); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(243, 'Components', now(), -1, now(), -1, 6, '4-01002', true, false, 217); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(244, 'Can', now(), -1, now(), -1, 6, '4-010020', true, true, 243); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(245, 'Coil', now(), -1, now(), -1, 6, '4-010021', true, true, 243); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(246, 'Contact', now(), -1, now(), -1, 6, '4-010022', true, true, 243); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(247, 'Contact Disk', now(), -1, now(), -1, 6, '4-010023', true, true, 243); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(248, 'Plunger', now(), -1, now(), -1, 6, '4-010024', true, true, 243); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(249, 'Cable Tie', now(), -1, now(), -1, 6, '4-026', true, true, 125); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(250, 'Enclosure', now(), -1, now(), -1, 6, '4-027', true, true, 125); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(252, 'Stud', now(), -1, now(), -1, 6, '4-211', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(253, 'Packaging', now(), -1, now(), -1, 6, '4-6', true, false, 67); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(254, 'Box', now(), -1, now(), -1, 6, '4-60', true, true, 254); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(255, 'Cart', now(), -1, now(), -1, 6, '5-20', true, false, 105); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(256, 'Skid', now(), -1, now(), -1, 6, '5-21', true, false, 105); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(257, 'Trailer', now(), -1, now(), -1, 6, '5-22', true, false, 105); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(258, 'Cart', now(), -1, now(), -1, 6, '6-20', true, false, 111); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(259, 'Skid', now(), -1, now(), -1, 6, '6-21', true, false, 111); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(260, 'Trailer', now(), -1, now(), -1, 6, '6-22', true, false, 111); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(261, 'Warranty Credit', now(), -1, now(), -1, 6, '7-0', true, false, 114); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(262, 'Error', now(), -1, now(), -1, 6, '8-0', true, false, 115); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(263, 'R&D', now(), -1, now(), -1, 6, '8-1', true, false, 115); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(264, 'Adjustments', now(), -1, now(), -1, 6, '8-2', true, false, 115); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(265, 'Plant', now(), -1, now(), -1, 6, '8-00', true, false, 262); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(266, 'BOM', now(), -1, now(), -1, 6, '8-01', true, false, 262); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(267, 'Admin', now(), -1, now(), -1, 6, '8-02', true, false, 262); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(268, 'Install', now(), -1, now(), -1, 6, '8-03', true, false, 262); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(269, 'Product Testing', now(), -1, now(), -1, 6, '8-10', true, false, 263); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(270, 'Field Test', now(), -1, now(), -1, 6, '8-11', true, false, 263); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(271, 'R&D - For Sale', now(), -1, now(), -1, 6, '8-12', true, false, 263); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(272, 'R&D - Not For Sale', now(), -1, now(), -1, 6, '8-13', true, false, 263); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(273, 'Experimental #s', now(), -1, now(), -1, 6, '8-14', true, false, 263); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(274, 'Pricing Adjust', now(), -1, now(), -1, 6, '8-20', true, false, 264); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(275, 'No Charge Cr', now(), -1, now(), -1, 6, '8-21', true, false, 264); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(276, 'Core Credit', now(), -1, now(), -1, 9, '9-1', true, false, 116); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(277, 'Core Charge', now(), -1, now(), -1, 9, '9-2', true, false, 116); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(280, 'Starter', now(), -1, now(), -1, 6, '5-50', true, false, 278); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(281, 'Remote', now(), -1, now(), -1, 6, '5-51', true, false, 278); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(284, 'Starter', now(), -1, now(), -1, 6, '6-50', true, false, 282); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(285, 'Remote', now(), -1, now(), -1, 6, '6-51', true, false, 282); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(286, 'Miscellany ', now(), -1, now(), -1, 0, '12', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(287, 'Component', now(), -1, now(), -1, 0, '12-0', true, false, 286); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(288, 'Obsolete item', now(), -1, now(), -1, 0, '12-1', true, false, 286); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(289, 'Mic Sales/Serv', now(), -1, now(), -1, 0, '12-2', true, false, 286); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(290, 'Misc Ret/Allow', now(), -1, now(), -1, 0, '12-3', true, false, 286); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(291, 'Show', now(), -1, now(), -1, 6, '2-02', true, false, 153); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(292, 'Non Stock Item', now(), -1, now(), -1, 0, '12-4', true, false, 286); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(293, 'Equipment Lease Program', now(), -1, now(), -1, 0, '12-5', true, false, 286); +--Location +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(2, 'Cart', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(72, 'Adapter', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(297, 'Other', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(1, 'Tooling', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(3, 'Table', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(4, 'Half Clean', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(5, 'Half Used', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(6, 'Full', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(7, 'Skids', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(8, 'Power Gen', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(9, '60 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(10, '80 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(11, '80 Gallon Short', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(12, '100 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(13, 'Construction', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(14, '60 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(15, '90 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(16, '120 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(17, '150 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(18, 'Trailer', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(19, 'Power Gen', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(20, '150 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(21, '400 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(22, 'Construction', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(23, 'Pulse', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(24, 'Hub', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(25, 'Extender', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(26, 'Remote Extender', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(27, 'Tank Level Monitor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(28, 'Meter', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(29, 'Roll Around', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(30, 'Reels', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(31, '3/8"', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(32, '1/2"', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(33, '3/4"', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(34, '1"', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(35, '1-1/4"', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(36, '1-1/2"', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(37, 'Pump', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(38, 'AC', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(39, 'Diaphragm', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(40, 'Gear', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(41, 'DC', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(42, 'Diaphragm', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(43, 'Gear', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(44, 'Pneumatic', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(45, 'Diaphragm', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(46, 'Piston', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(47, 'AC8', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(48, 'SCET', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(49, 'Meters', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(50, 'Digital', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(51, 'Mechanical', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(52, 'Tool', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(53, 'Conversion Kit', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(54, 'Purge Tool', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(55, 'Sample Tool', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(56, 'Activation Tool', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(57, 'Prelub', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(58, 'Kits', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(59, 'QuickEvac', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(60, 'QuickFit', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(61, 'MultiVac', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(62, 'MCES', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(63, 'SCET', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(64, 'Prelub', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(65, 'Electrical', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(66, 'Plumbing', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(67, 'Components', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(68, 'Electrical', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(69, 'Plumbing', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(70, 'Hardware', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(71, 'Brackets', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(73, 'Hose', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(74, 'Valve', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(75, 'Filter Adapter', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(76, 'Seal', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(77, 'Plate', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(78, 'Straight', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(79, 'Elbow', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(80, 'Tee', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(81, 'Cross', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(82, 'Cap', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(83, 'Plug', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(84, 'Banjo', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(85, 'Hose End', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(86, 'Bolt', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(87, 'Screw', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(88, 'Nut', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(89, 'Washer', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(90, 'Assembly', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(91, 'Socketless', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(92, 'Heavy Duty', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(93, 'Marine', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(216, 'Firesleeve', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(94, 'Check', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(95, 'Ball', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(96, 'Filter Ring', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(97, 'Nipple', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(98, 'O-Ring', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(99, 'Gasket', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(100, 'Dowty', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(101, 'Copper', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(102, 'Labor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(103, 'Kit', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(104, 'Hose', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(105, 'Tooling', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(106, 'Installation', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(107, 'Training', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(108, 'Overhead', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(109, 'Kit', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(110, 'Hose', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(111, 'Tooling', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(112, 'Installation', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(113, 'Training', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(114, 'Warranty', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(115, 'Financial', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(116, 'Core', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(117, 'Motor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(278, 'Motor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(118, 'Remote', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(279, 'Switch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(119, 'Switch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(120, 'Motor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(282, 'Motor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(121, 'Remote', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(283, 'Switch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(122, 'Switch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(123, 'ConnexionMobile', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(124, 'Controls', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(125, 'Wiring', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(126, 'Wiring Harness', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(127, 'Switches', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(128, 'Relay', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(129, 'Timer', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(130, 'Switch/Timer', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(131, 'Circuit Board', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(132, 'Controller', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(133, 'Wire', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(134, 'Connector', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(135, 'Conduit', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(136, 'Fuse', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(137, 'Components', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(138, 'Heat Shrink', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(139, 'Main', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(140, 'Keyswitch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(141, 'Sensor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(142, 'Extension', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(143, 'Sensor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(144, 'Deutsch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(145, 'Sure Seal', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(146, 'Packard', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(147, 'Cinch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(148, 'Molex', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(149, 'Ring Terminal', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(150, 'Quick Disconnect', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(251, 'Special Fitting', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(151, 'Pickup Tube', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(152, 'Controlled Document', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(153, 'Built', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(154, 'Unbuilt', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(155, 'Components', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(156, 'Armature', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(157, 'Bearing', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(158, 'Brush', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(159, 'Brush Holder', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(160, 'Brush Plate Assembly', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(161, 'Bushing', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(162, 'Cartridge', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(163, 'CE Plate', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(164, 'Crank Solenoid', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(165, 'Cup', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(166, 'Drive', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(167, 'Field', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(168, 'Field Housing', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(169, 'Frame', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(170, 'Frame & Field', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(171, 'Gear', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(172, 'Ground Strap', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(173, 'Ground Stud', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(174, 'Inspection Plug', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(175, 'Insulation', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(176, 'Insulator', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(177, 'Key', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(178, 'Lever', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(179, 'Lever Housing', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(180, 'Pump Lid', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(181, 'Motor Adapter Plate', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(182, 'Nose Housing', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(183, 'Pin', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(184, 'Pole Shoe', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(185, 'Pump', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(186, 'Pump Casting', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(187, 'Pump Lid Casting', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(188, 'Pump Lid Gasket', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(189, 'Shaft', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(190, 'Wick', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(191, 'Motor - AC', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(192, 'Motor - DC', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(193, 'OE', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(194, 'Reman', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(195, 'Remote', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(196, 'Starter', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(197, 'Remote', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(198, 'Starter', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(199, 'AC', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(200, 'DC', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(201, 'P1K', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(202, 'P2K', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(203, 'P3K', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(204, 'P3KHD', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(205, 'P4K10', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(206, 'P4K20', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(207, 'P4K40', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(208, 'P4L20', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(209, 'P4L40', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(210, 'HVP', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(211, '40RM', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(212, '41RM', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(213, 'DC', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(214, '42MT', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(215, '50MT', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(217, 'Mag Switch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(218, 'Pressure Switch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(219, 'Grommet', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(220, 'Pneumatics', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(221, 'Compressor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(222, 'Compressor Accessory', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(223, 'Clamp', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(224, 'New Take Off', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(225, 'Tag', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(226, 'Remote Bracket', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(227, 'Snap Ring', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(228, 'Spacer', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(229, 'Rivet', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(230, 'Spring', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(231, 'Marking', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(232, 'Manifold', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(233, 'Components', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(234, 'Containment', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(235, 'Tank', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(236, 'Filter Box', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(237, 'Reel Box', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(238, 'Spill Box', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(239, 'Battery Box', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(240, 'Sticker', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(241, '12V', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(242, '24V', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(243, 'Components', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(244, 'Can', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(245, 'Coil', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(246, 'Contact', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(247, 'Contact Disk', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(248, 'Plunger', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(249, 'Cable Tie', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(250, 'Enclosure', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(252, 'Stud', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(253, 'Packaging', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(254, 'Box', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(255, 'Cart', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(256, 'Skid', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(257, 'Trailer', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(258, 'Cart', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(259, 'Skid', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(260, 'Trailer', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(261, 'Warranty Credit', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(262, 'Error', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(263, 'R&D', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(264, 'Adjustments', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(265, 'Plant', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(266, 'BOM', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(267, 'Admin', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(268, 'Install', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(269, 'Product Testing', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(270, 'Field Test', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(271, 'R&D - For Sale', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(272, 'R&D - Not For Sale', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(273, 'Experimental #s', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(274, 'Pricing Adjust', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(275, 'No Charge Cr', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(276, 'Core Credit', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(277, 'Core Charge', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(280, 'Starter', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(281, 'Remote', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(284, 'Starter', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(285, 'Remote', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(286, 'Miscellany ', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(287, 'Component', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(288, 'Obsolete item', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(289, 'Mic Sales/Serv', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(290, 'Misc Ret/Allow', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(291, 'Show', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(292, 'Non Stock Item', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(293, 'Equipment Lease Program', now(), -1, now(), -1); + diff --git a/migrate_data/acc_pgsql/PGSqlHelper.cs b/migrate_data/acc_pgsql/PGSqlHelper.cs index 986526f..7cf4ebf 100644 --- a/migrate_data/acc_pgsql/PGSqlHelper.cs +++ b/migrate_data/acc_pgsql/PGSqlHelper.cs @@ -15,7 +15,7 @@ namespace acc_pgsql static string _localip = "127.0.0.1"; static uint _port = (uint)5432; static string _connString = "Server={0};Database=accessdb_v2;Port={1};User Id={2};Password={3};"; - + //allway wrap call in try catch public static System.Data.DataSet RunPGSql( List sql) { uint port = (uint)_port; @@ -51,15 +51,14 @@ namespace acc_pgsql } catch (Exception ex) { - Console.WriteLine(ex.Message); + FileHelper.Log(ex.Message, true); throw ex; } } else - { - return ds; - //kill program + { + throw new Exception("Unable to establish Connection to remote database."); } } } diff --git a/migrate_data/acc_pgsql/Program.cs b/migrate_data/acc_pgsql/Program.cs index 37cd1d7..a97b0a7 100644 --- a/migrate_data/acc_pgsql/Program.cs +++ b/migrate_data/acc_pgsql/Program.cs @@ -7,9 +7,22 @@ namespace acc_pgsql { class Program { + static List _statements; static void Main(string[] args) { - PGSqlGenerator.GenerateSeedData("Status"); + _statements = new List(); + Step1(); + Console.ReadLine(); + } + /// + /// Initialize seed data for Status, PartType, PartCode, Location, + /// + static void Step1() + { + string path = Environment.CurrentDirectory; + path = System.IO.Path.Combine(path, "InitialSeedData.sql"); + string sql = FileHelper.ReadFile(path); + //store this in list of strings to execuet in order } } } diff --git a/migrate_data/acc_pgsql/Properties/AssemblyInfo.cs b/migrate_data/acc_pgsql/Properties/AssemblyInfo.cs index 00d5006..7877508 100644 --- a/migrate_data/acc_pgsql/Properties/AssemblyInfo.cs +++ b/migrate_data/acc_pgsql/Properties/AssemblyInfo.cs @@ -34,3 +34,5 @@ using System.Runtime.InteropServices; // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] + +[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("acc_pgsqlTest")] \ No newline at end of file diff --git a/migrate_data/acc_pgsql/acc_pgsql.csproj b/migrate_data/acc_pgsql/acc_pgsql.csproj index 71ebd78..bfda3a8 100644 --- a/migrate_data/acc_pgsql/acc_pgsql.csproj +++ b/migrate_data/acc_pgsql/acc_pgsql.csproj @@ -70,12 +70,18 @@ + + + + Always + + + \ No newline at end of file diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/InitialSeedData.sql b/migrate_data/acc_pgsqlTest/bin/Debug/InitialSeedData.sql new file mode 100644 index 0000000..9321627 --- /dev/null +++ b/migrate_data/acc_pgsqlTest/bin/Debug/InitialSeedData.sql @@ -0,0 +1,612 @@ + +--Status +Insert Into "Status"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(1, 'Active', now(), -1, now(), -1); +Insert Into "Status"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(2, 'Obsolete', now(), -1, now(), -1); +Insert Into "Status"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(3, 'Approved', now(), -1, now(), -1); +Insert Into "Status"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(4, 'In Process', now(), -1, now(), -1); +Insert Into "Status"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(5, 'Submitted for FAC', now(), -1, now(), -1); +Insert Into "Status"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(6, 'Submitted for Approval', now(), -1, now(), -1); + +--PartType +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(1, 'Built motor', 100000, 189999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(2, 'Upfit kit', 190000, 199999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(3, 'MultiVac kit', 310000, 319999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(4, 'SCET', 300000, 309999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(5, 'Controlled document', 10000, 99999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(6, 'General', 100600, 189999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(7, 'Experimental', 700000, 709999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(8, 'Tooling', 800000, 809999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(9, 'Core', 980000, 989999, now(), -1, now(), -1); +Insert Into "PartType"(id, name, "starting", "ending", "createDate", "createUserId", "updateDate", "updateUserId") Values(0, 'N/A', 0, 0, now(), -1, now(), -1); + +--PartCode +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(2, 'Cart', now(), -1, now(), -1, 6, '13-0', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(72, 'Adapter', now(), -1, now(), -1, 6, '4-10', true, false, 69); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(297, 'Other', now(), -1, now(), -1, 0, null, true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(1, 'Tooling', now(), -1, now(), -1, 6, '13', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(3, 'Table', now(), -1, now(), -1, 6, '13-1', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(4, 'Half Clean', now(), -1, now(), -1, 6, '13-10', true, false, 3); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(5, 'Half Used', now(), -1, now(), -1, 6, '13-11', true, false, 3); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(6, 'Full', now(), -1, now(), -1, 6, '13-12', true, false, 3); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(7, 'Skids', now(), -1, now(), -1, 6, '13-2', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(8, 'Power Gen', now(), -1, now(), -1, 6, '13-20', true, false, 7); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(9, '60 Gallon', now(), -1, now(), -1, 6, '13-200', true, false, 8); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(10, '80 Gallon', now(), -1, now(), -1, 6, '13-201', true, false, 8); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(11, '80 Gallon Short', now(), -1, now(), -1, 6, '13-202', true, false, 8); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(12, '100 Gallon', now(), -1, now(), -1, 6, '13-203', true, false, 8); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(13, 'Construction', now(), -1, now(), -1, 6, '13-21', true, false, 7); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(14, '60 Gallon', now(), -1, now(), -1, 6, '13-210', true, false, 13); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(15, '90 Gallon', now(), -1, now(), -1, 6, '13-211', true, false, 13); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(16, '120 Gallon', now(), -1, now(), -1, 6, '13-212', true, false, 13); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(17, '150 Gallon', now(), -1, now(), -1, 6, '13-213', true, false, 13); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(18, 'Trailer', now(), -1, now(), -1, 6, '13-3', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(19, 'Power Gen', now(), -1, now(), -1, 6, '13-30', true, false, 18); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(20, '150 Gallon', now(), -1, now(), -1, 6, '13-300', true, false, 19); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(21, '400 Gallon', now(), -1, now(), -1, 6, '13-301', true, false, 19); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(22, 'Construction', now(), -1, now(), -1, 6, '13-31', true, false, 18); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(23, 'Pulse', now(), -1, now(), -1, 6, '13-4', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(24, 'Hub', now(), -1, now(), -1, 6, '13-40', true, false, 23); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(25, 'Extender', now(), -1, now(), -1, 6, '13-41', true, false, 23); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(26, 'Remote Extender', now(), -1, now(), -1, 6, '13-42', true, false, 23); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(27, 'Tank Level Monitor', now(), -1, now(), -1, 6, '13-43', true, false, 23); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(28, 'Meter', now(), -1, now(), -1, 6, '13-44', true, false, 23); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(29, 'Roll Around', now(), -1, now(), -1, 6, '13-45', true, false, 23); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(30, 'Reels', now(), -1, now(), -1, 6, '13-5', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(31, '3/8"', now(), -1, now(), -1, 6, '13-50', true, false, 30); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(32, '1/2"', now(), -1, now(), -1, 6, '13-51', true, false, 30); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(33, '3/4"', now(), -1, now(), -1, 6, '13-52', true, false, 30); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(34, '1"', now(), -1, now(), -1, 6, '13-53', true, false, 30); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(35, '1-1/4"', now(), -1, now(), -1, 6, '13-54', true, false, 30); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(36, '1-1/2"', now(), -1, now(), -1, 6, '13-55', true, false, 30); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(37, 'Pump', now(), -1, now(), -1, 6, '13-6', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(38, 'AC', now(), -1, now(), -1, 6, '13-60', true, false, 37); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(39, 'Diaphragm', now(), -1, now(), -1, 6, '13-600', true, false, 38); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(40, 'Gear', now(), -1, now(), -1, 6, '13-601', true, false, 38); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(41, 'DC', now(), -1, now(), -1, 6, '13-61', true, false, 37); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(42, 'Diaphragm', now(), -1, now(), -1, 6, '13-610', true, false, 41); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(43, 'Gear', now(), -1, now(), -1, 6, '13-611', true, false, 41); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(44, 'Pneumatic', now(), -1, now(), -1, 6, '13-62', true, false, 37); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(45, 'Diaphragm', now(), -1, now(), -1, 6, '13-620', true, false, 44); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(46, 'Piston', now(), -1, now(), -1, 6, '13-621', true, false, 44); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(47, 'AC8', now(), -1, now(), -1, 6, '13-6010', true, false, 40); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(48, 'SCET', now(), -1, now(), -1, 6, '13-6110', true, false, 43); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(49, 'Meters', now(), -1, now(), -1, 6, '13-7', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(50, 'Digital', now(), -1, now(), -1, 6, '13-70', true, false, 49); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(51, 'Mechanical', now(), -1, now(), -1, 6, '13-71', true, false, 49); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(52, 'Tool', now(), -1, now(), -1, 6, '13-8', true, true, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(53, 'Conversion Kit', now(), -1, now(), -1, 6, '13-80', true, false, 52); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(54, 'Purge Tool', now(), -1, now(), -1, 6, '13-81', true, false, 52); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(55, 'Sample Tool', now(), -1, now(), -1, 6, '13-82', true, false, 52); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(56, 'Activation Tool', now(), -1, now(), -1, 6, '13-83', true, false, 52); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(57, 'Prelub', now(), -1, now(), -1, 6, '2', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(58, 'Kits', now(), -1, now(), -1, 6, '3', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(59, 'QuickEvac', now(), -1, now(), -1, 2, '3-0', true, true, 58); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(60, 'QuickFit', now(), -1, now(), -1, 4, '3-1', true, true, 58); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(61, 'MultiVac', now(), -1, now(), -1, 3, '3-2', true, true, 58); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(62, 'MCES', now(), -1, now(), -1, 4, '3-3', true, true, 58); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(63, 'SCET', now(), -1, now(), -1, 4, '3-4', true, true, 58); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(64, 'Prelub', now(), -1, now(), -1, 2, '3-5', true, true, 58); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(65, 'Electrical', now(), -1, now(), -1, 6, '3-6', true, true, 58); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(66, 'Plumbing', now(), -1, now(), -1, 6, '3-7', true, true, 58); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(67, 'Components', now(), -1, now(), -1, 6, '4', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(68, 'Electrical', now(), -1, now(), -1, 6, '4-0', true, false, 67); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(69, 'Plumbing', now(), -1, now(), -1, 6, '4-1', true, false, 67); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(70, 'Hardware', now(), -1, now(), -1, 6, '4-2', true, false, 67); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(71, 'Brackets', now(), -1, now(), -1, 6, '4-3', true, false, 67); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(73, 'Hose', now(), -1, now(), -1, 6, '4-11', true, true, 69); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(74, 'Valve', now(), -1, now(), -1, 6, '4-12', true, true, 69); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(75, 'Filter Adapter', now(), -1, now(), -1, 6, '4-13', true, true, 69); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(76, 'Seal', now(), -1, now(), -1, 6, '4-14', true, true, 69); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(77, 'Plate', now(), -1, now(), -1, 6, '4-15', true, true, 69); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(78, 'Straight', now(), -1, now(), -1, 6, '4-100', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(79, 'Elbow', now(), -1, now(), -1, 6, '4-101', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(80, 'Tee', now(), -1, now(), -1, 6, '4-102', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(81, 'Cross', now(), -1, now(), -1, 6, '4-103', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(82, 'Cap', now(), -1, now(), -1, 6, '4-104', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(83, 'Plug', now(), -1, now(), -1, 6, '4-105', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(84, 'Banjo', now(), -1, now(), -1, 6, '4-106', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(85, 'Hose End', now(), -1, now(), -1, 6, '4-107', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(86, 'Bolt', now(), -1, now(), -1, 6, '4-20', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(87, 'Screw', now(), -1, now(), -1, 6, '4-21', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(88, 'Nut', now(), -1, now(), -1, 6, '4-22', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(89, 'Washer', now(), -1, now(), -1, 6, '4-23', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(90, 'Assembly', now(), -1, now(), -1, 6, '4-110', true, true, 73); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(91, 'Socketless', now(), -1, now(), -1, 6, '4-111', true, false, 73); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(92, 'Heavy Duty', now(), -1, now(), -1, 6, '4-112', true, false, 73); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(93, 'Marine', now(), -1, now(), -1, 6, '4-113', true, false, 73); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(216, 'Firesleeve', now(), -1, now(), -1, 6, '4-113', true, true, 73); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(94, 'Check', now(), -1, now(), -1, 6, '4-120', true, true, 74); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(95, 'Ball', now(), -1, now(), -1, 6, '4-121', true, true, 74); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(96, 'Filter Ring', now(), -1, now(), -1, 6, '4-130', true, true, 75); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(97, 'Nipple', now(), -1, now(), -1, 6, '4-131', true, true, 75); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(98, 'O-Ring', now(), -1, now(), -1, 6, '4-140', true, true, 76); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(99, 'Gasket', now(), -1, now(), -1, 6, '4-141', true, true, 76); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(100, 'Dowty', now(), -1, now(), -1, 6, '4-142', true, true, 76); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(101, 'Copper', now(), -1, now(), -1, 6, '4-143', true, true, 76); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(102, 'Labor', now(), -1, now(), -1, 6, '5', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(103, 'Kit', now(), -1, now(), -1, 6, '5-0', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(104, 'Hose', now(), -1, now(), -1, 6, '5-1', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(105, 'Tooling', now(), -1, now(), -1, 6, '5-2', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(106, 'Installation', now(), -1, now(), -1, 6, '5-3', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(107, 'Training', now(), -1, now(), -1, 6, '5-4', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(108, 'Overhead', now(), -1, now(), -1, 6, '6', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(109, 'Kit', now(), -1, now(), -1, 6, '6-0', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(110, 'Hose', now(), -1, now(), -1, 6, '6-1', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(111, 'Tooling', now(), -1, now(), -1, 6, '6-2', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(112, 'Installation', now(), -1, now(), -1, 6, '6-3', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(113, 'Training', now(), -1, now(), -1, 6, '6-4', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(114, 'Warranty', now(), -1, now(), -1, 6, '7', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(115, 'Financial', now(), -1, now(), -1, 6, '8', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(116, 'Core', now(), -1, now(), -1, 9, '9', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(117, 'Motor', now(), -1, now(), -1, 6, '5-5', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(278, 'Motor', now(), -1, now(), -1, 6, '5-5', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(118, 'Remote', now(), -1, now(), -1, 6, '5-6', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(279, 'Switch', now(), -1, now(), -1, 6, '5-6', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(119, 'Switch', now(), -1, now(), -1, 6, '5-7', true, false, 102); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(120, 'Motor', now(), -1, now(), -1, 6, '6-5', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(282, 'Motor', now(), -1, now(), -1, 6, '6-5', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(121, 'Remote', now(), -1, now(), -1, 6, '6-6', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(283, 'Switch', now(), -1, now(), -1, 6, '6-6', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(122, 'Switch', now(), -1, now(), -1, 6, '6-7', true, false, 108); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(123, 'ConnexionMobile', now(), -1, now(), -1, 6, '10', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(124, 'Controls', now(), -1, now(), -1, 6, '4-01', true, false, 68); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(125, 'Wiring', now(), -1, now(), -1, 6, '4-02', true, false, 68); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(126, 'Wiring Harness', now(), -1, now(), -1, 6, '4-03', true, true, 68); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(127, 'Switches', now(), -1, now(), -1, 6, '4-010', true, false, 124); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(128, 'Relay', now(), -1, now(), -1, 6, '4-011', true, true, 124); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(129, 'Timer', now(), -1, now(), -1, 6, '4-012', true, true, 124); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(130, 'Switch/Timer', now(), -1, now(), -1, 6, '4-013', true, true, 124); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(131, 'Circuit Board', now(), -1, now(), -1, 6, '4-014', true, true, 124); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(132, 'Controller', now(), -1, now(), -1, 6, '4-015', true, true, 124); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(133, 'Wire', now(), -1, now(), -1, 6, '4-020', true, true, 125); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(134, 'Connector', now(), -1, now(), -1, 6, '4-021', true, true, 125); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(135, 'Conduit', now(), -1, now(), -1, 6, '4-022', true, true, 125); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(136, 'Fuse', now(), -1, now(), -1, 6, '4-023', true, true, 125); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(137, 'Components', now(), -1, now(), -1, 6, '4-024', true, true, 125); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(138, 'Heat Shrink', now(), -1, now(), -1, 6, '4-025', true, true, 125); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(139, 'Main', now(), -1, now(), -1, 6, '4-030', true, true, 126); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(140, 'Keyswitch', now(), -1, now(), -1, 6, '4-031', true, true, 126); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(141, 'Sensor', now(), -1, now(), -1, 6, '4-032', true, true, 126); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(142, 'Extension', now(), -1, now(), -1, 6, '4-033', true, true, 126); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(143, 'Sensor', now(), -1, now(), -1, 6, '4-016', true, true, 124); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(144, 'Deutsch', now(), -1, now(), -1, 6, '4-0210', true, true, 134); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(145, 'Sure Seal', now(), -1, now(), -1, 6, '4-0211', true, true, 134); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(146, 'Packard', now(), -1, now(), -1, 6, '4-0212', true, true, 134); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(147, 'Cinch', now(), -1, now(), -1, 6, '4-0213', true, true, 134); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(148, 'Molex', now(), -1, now(), -1, 6, '4-0214', true, true, 134); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(149, 'Ring Terminal', now(), -1, now(), -1, 6, '4-0215', true, true, 134); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(150, 'Quick Disconnect', now(), -1, now(), -1, 6, '4-108', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(251, 'Special Fitting', now(), -1, now(), -1, 6, '4-108', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(151, 'Pickup Tube', now(), -1, now(), -1, 6, '4-109', true, true, 72); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(152, 'Controlled Document', now(), -1, now(), -1, 5, '11', true, true, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(153, 'Built', now(), -1, now(), -1, 6, '2-0', true, false, 57); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(154, 'Unbuilt', now(), -1, now(), -1, 6, '2-1', true, false, 57); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(155, 'Components', now(), -1, now(), -1, 6, '2-2', true, false, 57); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(156, 'Armature', now(), -1, now(), -1, 6, '2-20', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(157, 'Bearing', now(), -1, now(), -1, 6, '2-21', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(158, 'Brush', now(), -1, now(), -1, 6, '2-22', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(159, 'Brush Holder', now(), -1, now(), -1, 6, '2-23', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(160, 'Brush Plate Assembly', now(), -1, now(), -1, 6, '2-24', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(161, 'Bushing', now(), -1, now(), -1, 6, '2-25', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(162, 'Cartridge', now(), -1, now(), -1, 6, '2-26', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(163, 'CE Plate', now(), -1, now(), -1, 6, '2-27', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(164, 'Crank Solenoid', now(), -1, now(), -1, 6, '2-28', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(165, 'Cup', now(), -1, now(), -1, 6, '2-29', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(166, 'Drive', now(), -1, now(), -1, 6, '2-210', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(167, 'Field', now(), -1, now(), -1, 6, '2-211', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(168, 'Field Housing', now(), -1, now(), -1, 6, '2-212', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(169, 'Frame', now(), -1, now(), -1, 6, '2-213', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(170, 'Frame & Field', now(), -1, now(), -1, 6, '2-214', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(171, 'Gear', now(), -1, now(), -1, 6, '2-215', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(172, 'Ground Strap', now(), -1, now(), -1, 6, '2-216', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(173, 'Ground Stud', now(), -1, now(), -1, 6, '2-217', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(174, 'Inspection Plug', now(), -1, now(), -1, 6, '2-218', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(175, 'Insulation', now(), -1, now(), -1, 6, '2-219', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(176, 'Insulator', now(), -1, now(), -1, 6, '2-220', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(177, 'Key', now(), -1, now(), -1, 6, '2-221', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(178, 'Lever', now(), -1, now(), -1, 6, '2-222', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(179, 'Lever Housing', now(), -1, now(), -1, 6, '2-223', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(180, 'Pump Lid', now(), -1, now(), -1, 6, '2-224', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(181, 'Motor Adapter Plate', now(), -1, now(), -1, 6, '2-225', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(182, 'Nose Housing', now(), -1, now(), -1, 6, '2-226', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(183, 'Pin', now(), -1, now(), -1, 6, '2-227', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(184, 'Pole Shoe', now(), -1, now(), -1, 6, '2-228', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(185, 'Pump', now(), -1, now(), -1, 6, '2-229', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(186, 'Pump Casting', now(), -1, now(), -1, 6, '2-230', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(187, 'Pump Lid Casting', now(), -1, now(), -1, 6, '2-231', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(188, 'Pump Lid Gasket', now(), -1, now(), -1, 6, '2-232', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(189, 'Shaft', now(), -1, now(), -1, 6, '2-233', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(190, 'Wick', now(), -1, now(), -1, 6, '2-234', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(191, 'Motor - AC', now(), -1, now(), -1, 6, '2-235', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(192, 'Motor - DC', now(), -1, now(), -1, 6, '2-236', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(193, 'OE', now(), -1, now(), -1, 6, '2-00', true, false, 153); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(194, 'Reman', now(), -1, now(), -1, 6, '2-01', true, false, 153); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(195, 'Remote', now(), -1, now(), -1, 6, '2-000', true, false, 193); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(196, 'Starter', now(), -1, now(), -1, 6, '2-001', true, false, 193); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(197, 'Remote', now(), -1, now(), -1, 6, '2-010', true, false, 194); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(198, 'Starter', now(), -1, now(), -1, 6, '2-011', true, false, 194); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(199, 'AC', now(), -1, now(), -1, 6, '2-0000', true, false, 195); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(200, 'DC', now(), -1, now(), -1, 6, '2-0001', true, false, 195); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(201, 'P1K', now(), -1, now(), -1, 6, '2-00010', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(202, 'P2K', now(), -1, now(), -1, 6, '2-00011', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(203, 'P3K', now(), -1, now(), -1, 6, '2-00012', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(204, 'P3KHD', now(), -1, now(), -1, 6, '2-00013', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(205, 'P4K10', now(), -1, now(), -1, 6, '2-00014', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(206, 'P4K20', now(), -1, now(), -1, 6, '2-00015', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(207, 'P4K40', now(), -1, now(), -1, 6, '2-00016', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(208, 'P4L20', now(), -1, now(), -1, 6, '2-00017', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(209, 'P4L40', now(), -1, now(), -1, 6, '2-00018', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(210, 'HVP', now(), -1, now(), -1, 6, '2-00019', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(211, '40RM', now(), -1, now(), -1, 6, '2-000110', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(212, '41RM', now(), -1, now(), -1, 6, '2-000111', true, false, 200); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(213, 'DC', now(), -1, now(), -1, 6, '2-0010', true, false, 202); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(214, '42MT', now(), -1, now(), -1, 6, '2-00100', true, false, 213); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(215, '50MT', now(), -1, now(), -1, 6, '2-00101', true, false, 213); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(217, 'Mag Switch', now(), -1, now(), -1, 6, '4-0100', true, true, 127); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(218, 'Pressure Switch', now(), -1, now(), -1, 6, '4-0101', true, true, 127); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(219, 'Grommet', now(), -1, now(), -1, 6, '4-24', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(220, 'Pneumatics', now(), -1, now(), -1, 6, '4-4', true, true, 67); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(221, 'Compressor', now(), -1, now(), -1, 6, '4-40', true, true, 220); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(222, 'Compressor Accessory', now(), -1, now(), -1, 6, '4-41', true, true, 220); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(223, 'Clamp', now(), -1, now(), -1, 6, '4-25', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(224, 'New Take Off', now(), -1, now(), -1, 9, '9-0', true, false, 116); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(225, 'Tag', now(), -1, now(), -1, 6, '4-50', true, true, 231); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(226, 'Remote Bracket', now(), -1, now(), -1, 6, '2-237', true, true, 155); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(227, 'Snap Ring', now(), -1, now(), -1, 6, '4-27', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(228, 'Spacer', now(), -1, now(), -1, 6, '4-28', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(229, 'Rivet', now(), -1, now(), -1, 6, '4-29', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(230, 'Spring', now(), -1, now(), -1, 6, '4-210', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(231, 'Marking', now(), -1, now(), -1, 6, '4-5', true, false, 67); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(232, 'Manifold', now(), -1, now(), -1, 6, '4-16', true, true, 69); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(233, 'Components', now(), -1, now(), -1, 6, '13-9', true, false, 1); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(234, 'Containment', now(), -1, now(), -1, 6, '13-90', true, true, 233); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(235, 'Tank', now(), -1, now(), -1, 6, '13-91', true, true, 233); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(236, 'Filter Box', now(), -1, now(), -1, 6, '13-92', true, true, 233); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(237, 'Reel Box', now(), -1, now(), -1, 6, '13-93', true, true, 233); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(238, 'Spill Box', now(), -1, now(), -1, 6, '13-94', true, true, 233); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(239, 'Battery Box', now(), -1, now(), -1, 6, '13-95', true, true, 233); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(240, 'Sticker', now(), -1, now(), -1, 6, '4-51', true, true, 231); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(241, '12V', now(), -1, now(), -1, 6, '4-01000', true, false, 217); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(242, '24V', now(), -1, now(), -1, 6, '4-01001', true, false, 217); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(243, 'Components', now(), -1, now(), -1, 6, '4-01002', true, false, 217); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(244, 'Can', now(), -1, now(), -1, 6, '4-010020', true, true, 243); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(245, 'Coil', now(), -1, now(), -1, 6, '4-010021', true, true, 243); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(246, 'Contact', now(), -1, now(), -1, 6, '4-010022', true, true, 243); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(247, 'Contact Disk', now(), -1, now(), -1, 6, '4-010023', true, true, 243); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(248, 'Plunger', now(), -1, now(), -1, 6, '4-010024', true, true, 243); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(249, 'Cable Tie', now(), -1, now(), -1, 6, '4-026', true, true, 125); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(250, 'Enclosure', now(), -1, now(), -1, 6, '4-027', true, true, 125); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(252, 'Stud', now(), -1, now(), -1, 6, '4-211', true, true, 70); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(253, 'Packaging', now(), -1, now(), -1, 6, '4-6', true, false, 67); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(254, 'Box', now(), -1, now(), -1, 6, '4-60', true, true, 254); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(255, 'Cart', now(), -1, now(), -1, 6, '5-20', true, false, 105); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(256, 'Skid', now(), -1, now(), -1, 6, '5-21', true, false, 105); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(257, 'Trailer', now(), -1, now(), -1, 6, '5-22', true, false, 105); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(258, 'Cart', now(), -1, now(), -1, 6, '6-20', true, false, 111); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(259, 'Skid', now(), -1, now(), -1, 6, '6-21', true, false, 111); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(260, 'Trailer', now(), -1, now(), -1, 6, '6-22', true, false, 111); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(261, 'Warranty Credit', now(), -1, now(), -1, 6, '7-0', true, false, 114); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(262, 'Error', now(), -1, now(), -1, 6, '8-0', true, false, 115); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(263, 'R&D', now(), -1, now(), -1, 6, '8-1', true, false, 115); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(264, 'Adjustments', now(), -1, now(), -1, 6, '8-2', true, false, 115); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(265, 'Plant', now(), -1, now(), -1, 6, '8-00', true, false, 262); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(266, 'BOM', now(), -1, now(), -1, 6, '8-01', true, false, 262); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(267, 'Admin', now(), -1, now(), -1, 6, '8-02', true, false, 262); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(268, 'Install', now(), -1, now(), -1, 6, '8-03', true, false, 262); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(269, 'Product Testing', now(), -1, now(), -1, 6, '8-10', true, false, 263); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(270, 'Field Test', now(), -1, now(), -1, 6, '8-11', true, false, 263); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(271, 'R&D - For Sale', now(), -1, now(), -1, 6, '8-12', true, false, 263); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(272, 'R&D - Not For Sale', now(), -1, now(), -1, 6, '8-13', true, false, 263); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(273, 'Experimental #s', now(), -1, now(), -1, 6, '8-14', true, false, 263); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(274, 'Pricing Adjust', now(), -1, now(), -1, 6, '8-20', true, false, 264); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(275, 'No Charge Cr', now(), -1, now(), -1, 6, '8-21', true, false, 264); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(276, 'Core Credit', now(), -1, now(), -1, 9, '9-1', true, false, 116); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(277, 'Core Charge', now(), -1, now(), -1, 9, '9-2', true, false, 116); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(280, 'Starter', now(), -1, now(), -1, 6, '5-50', true, false, 278); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(281, 'Remote', now(), -1, now(), -1, 6, '5-51', true, false, 278); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(284, 'Starter', now(), -1, now(), -1, 6, '6-50', true, false, 282); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(285, 'Remote', now(), -1, now(), -1, 6, '6-51', true, false, 282); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(286, 'Miscellany ', now(), -1, now(), -1, 0, '12', true, false, null); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(287, 'Component', now(), -1, now(), -1, 0, '12-0', true, false, 286); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(288, 'Obsolete item', now(), -1, now(), -1, 0, '12-1', true, false, 286); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(289, 'Mic Sales/Serv', now(), -1, now(), -1, 0, '12-2', true, false, 286); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(290, 'Misc Ret/Allow', now(), -1, now(), -1, 0, '12-3', true, false, 286); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(291, 'Show', now(), -1, now(), -1, 6, '2-02', true, false, 153); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(292, 'Non Stock Item', now(), -1, now(), -1, 0, '12-4', true, false, 286); +Insert Into "PartCode"(id, name, "createDate", "createUserId", "updateDate", "updateUserId", "partTypeId", "code", "isActive", "isPartCode", "paretnId") Values(293, 'Equipment Lease Program', now(), -1, now(), -1, 0, '12-5', true, false, 286); +--Location +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(2, 'Cart', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(72, 'Adapter', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(297, 'Other', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(1, 'Tooling', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(3, 'Table', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(4, 'Half Clean', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(5, 'Half Used', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(6, 'Full', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(7, 'Skids', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(8, 'Power Gen', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(9, '60 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(10, '80 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(11, '80 Gallon Short', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(12, '100 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(13, 'Construction', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(14, '60 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(15, '90 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(16, '120 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(17, '150 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(18, 'Trailer', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(19, 'Power Gen', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(20, '150 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(21, '400 Gallon', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(22, 'Construction', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(23, 'Pulse', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(24, 'Hub', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(25, 'Extender', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(26, 'Remote Extender', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(27, 'Tank Level Monitor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(28, 'Meter', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(29, 'Roll Around', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(30, 'Reels', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(31, '3/8"', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(32, '1/2"', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(33, '3/4"', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(34, '1"', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(35, '1-1/4"', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(36, '1-1/2"', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(37, 'Pump', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(38, 'AC', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(39, 'Diaphragm', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(40, 'Gear', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(41, 'DC', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(42, 'Diaphragm', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(43, 'Gear', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(44, 'Pneumatic', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(45, 'Diaphragm', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(46, 'Piston', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(47, 'AC8', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(48, 'SCET', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(49, 'Meters', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(50, 'Digital', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(51, 'Mechanical', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(52, 'Tool', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(53, 'Conversion Kit', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(54, 'Purge Tool', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(55, 'Sample Tool', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(56, 'Activation Tool', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(57, 'Prelub', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(58, 'Kits', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(59, 'QuickEvac', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(60, 'QuickFit', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(61, 'MultiVac', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(62, 'MCES', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(63, 'SCET', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(64, 'Prelub', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(65, 'Electrical', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(66, 'Plumbing', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(67, 'Components', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(68, 'Electrical', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(69, 'Plumbing', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(70, 'Hardware', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(71, 'Brackets', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(73, 'Hose', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(74, 'Valve', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(75, 'Filter Adapter', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(76, 'Seal', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(77, 'Plate', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(78, 'Straight', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(79, 'Elbow', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(80, 'Tee', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(81, 'Cross', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(82, 'Cap', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(83, 'Plug', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(84, 'Banjo', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(85, 'Hose End', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(86, 'Bolt', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(87, 'Screw', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(88, 'Nut', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(89, 'Washer', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(90, 'Assembly', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(91, 'Socketless', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(92, 'Heavy Duty', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(93, 'Marine', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(216, 'Firesleeve', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(94, 'Check', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(95, 'Ball', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(96, 'Filter Ring', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(97, 'Nipple', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(98, 'O-Ring', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(99, 'Gasket', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(100, 'Dowty', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(101, 'Copper', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(102, 'Labor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(103, 'Kit', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(104, 'Hose', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(105, 'Tooling', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(106, 'Installation', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(107, 'Training', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(108, 'Overhead', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(109, 'Kit', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(110, 'Hose', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(111, 'Tooling', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(112, 'Installation', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(113, 'Training', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(114, 'Warranty', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(115, 'Financial', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(116, 'Core', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(117, 'Motor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(278, 'Motor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(118, 'Remote', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(279, 'Switch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(119, 'Switch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(120, 'Motor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(282, 'Motor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(121, 'Remote', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(283, 'Switch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(122, 'Switch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(123, 'ConnexionMobile', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(124, 'Controls', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(125, 'Wiring', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(126, 'Wiring Harness', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(127, 'Switches', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(128, 'Relay', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(129, 'Timer', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(130, 'Switch/Timer', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(131, 'Circuit Board', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(132, 'Controller', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(133, 'Wire', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(134, 'Connector', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(135, 'Conduit', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(136, 'Fuse', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(137, 'Components', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(138, 'Heat Shrink', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(139, 'Main', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(140, 'Keyswitch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(141, 'Sensor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(142, 'Extension', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(143, 'Sensor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(144, 'Deutsch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(145, 'Sure Seal', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(146, 'Packard', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(147, 'Cinch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(148, 'Molex', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(149, 'Ring Terminal', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(150, 'Quick Disconnect', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(251, 'Special Fitting', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(151, 'Pickup Tube', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(152, 'Controlled Document', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(153, 'Built', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(154, 'Unbuilt', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(155, 'Components', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(156, 'Armature', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(157, 'Bearing', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(158, 'Brush', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(159, 'Brush Holder', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(160, 'Brush Plate Assembly', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(161, 'Bushing', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(162, 'Cartridge', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(163, 'CE Plate', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(164, 'Crank Solenoid', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(165, 'Cup', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(166, 'Drive', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(167, 'Field', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(168, 'Field Housing', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(169, 'Frame', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(170, 'Frame & Field', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(171, 'Gear', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(172, 'Ground Strap', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(173, 'Ground Stud', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(174, 'Inspection Plug', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(175, 'Insulation', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(176, 'Insulator', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(177, 'Key', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(178, 'Lever', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(179, 'Lever Housing', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(180, 'Pump Lid', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(181, 'Motor Adapter Plate', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(182, 'Nose Housing', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(183, 'Pin', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(184, 'Pole Shoe', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(185, 'Pump', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(186, 'Pump Casting', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(187, 'Pump Lid Casting', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(188, 'Pump Lid Gasket', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(189, 'Shaft', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(190, 'Wick', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(191, 'Motor - AC', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(192, 'Motor - DC', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(193, 'OE', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(194, 'Reman', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(195, 'Remote', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(196, 'Starter', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(197, 'Remote', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(198, 'Starter', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(199, 'AC', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(200, 'DC', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(201, 'P1K', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(202, 'P2K', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(203, 'P3K', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(204, 'P3KHD', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(205, 'P4K10', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(206, 'P4K20', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(207, 'P4K40', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(208, 'P4L20', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(209, 'P4L40', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(210, 'HVP', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(211, '40RM', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(212, '41RM', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(213, 'DC', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(214, '42MT', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(215, '50MT', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(217, 'Mag Switch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(218, 'Pressure Switch', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(219, 'Grommet', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(220, 'Pneumatics', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(221, 'Compressor', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(222, 'Compressor Accessory', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(223, 'Clamp', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(224, 'New Take Off', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(225, 'Tag', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(226, 'Remote Bracket', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(227, 'Snap Ring', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(228, 'Spacer', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(229, 'Rivet', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(230, 'Spring', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(231, 'Marking', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(232, 'Manifold', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(233, 'Components', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(234, 'Containment', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(235, 'Tank', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(236, 'Filter Box', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(237, 'Reel Box', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(238, 'Spill Box', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(239, 'Battery Box', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(240, 'Sticker', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(241, '12V', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(242, '24V', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(243, 'Components', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(244, 'Can', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(245, 'Coil', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(246, 'Contact', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(247, 'Contact Disk', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(248, 'Plunger', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(249, 'Cable Tie', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(250, 'Enclosure', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(252, 'Stud', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(253, 'Packaging', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(254, 'Box', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(255, 'Cart', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(256, 'Skid', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(257, 'Trailer', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(258, 'Cart', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(259, 'Skid', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(260, 'Trailer', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(261, 'Warranty Credit', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(262, 'Error', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(263, 'R&D', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(264, 'Adjustments', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(265, 'Plant', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(266, 'BOM', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(267, 'Admin', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(268, 'Install', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(269, 'Product Testing', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(270, 'Field Test', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(271, 'R&D - For Sale', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(272, 'R&D - Not For Sale', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(273, 'Experimental #s', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(274, 'Pricing Adjust', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(275, 'No Charge Cr', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(276, 'Core Credit', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(277, 'Core Charge', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(280, 'Starter', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(281, 'Remote', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(284, 'Starter', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(285, 'Remote', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(286, 'Miscellany ', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(287, 'Component', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(288, 'Obsolete item', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(289, 'Mic Sales/Serv', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(290, 'Misc Ret/Allow', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(291, 'Show', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(292, 'Non Stock Item', now(), -1, now(), -1); +Insert Into "Location"(id, name, "createDate", "createUserId", "updateDate", "updateUserId") Values(293, 'Equipment Lease Program', now(), -1, now(), -1); + diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/Microsoft.Web.XmlTransform.dll b/migrate_data/acc_pgsqlTest/bin/Debug/Microsoft.Web.XmlTransform.dll new file mode 100644 index 0000000..98c9d56 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/Microsoft.Web.XmlTransform.dll differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/Mono.Security.dll b/migrate_data/acc_pgsqlTest/bin/Debug/Mono.Security.dll new file mode 100644 index 0000000..62ae339 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/Mono.Security.dll differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/Newtonsoft.Json.dll b/migrate_data/acc_pgsqlTest/bin/Debug/Newtonsoft.Json.dll new file mode 100644 index 0000000..20dae62 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/Newtonsoft.Json.dll differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/Newtonsoft.Json.xml b/migrate_data/acc_pgsqlTest/bin/Debug/Newtonsoft.Json.xml new file mode 100644 index 0000000..c1357e6 --- /dev/null +++ b/migrate_data/acc_pgsqlTest/bin/Debug/Newtonsoft.Json.xml @@ -0,0 +1,9229 @@ + + + + Newtonsoft.Json + + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. + + + true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. + + + + + Gets or sets a value indicating whether the root object will be read as a JSON array. + + + true if the root object will be read as a JSON array; otherwise, false. + + + + + Gets or sets the used when reading values from BSON. + + The used when reading values from BSON. + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The reader. + + + + Initializes a new instance of the class. + + The stream. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Initializes a new instance of the class. + + The reader. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Changes the to Closed. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets or sets the used when writing values to BSON. + When set to no conversion will occur. + + The used when writing values to BSON. + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The writer. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Writes the end. + + The token. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes the beginning of a JSON array. + + + + + Writes the beginning of a JSON object. + + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Closes this stream and the underlying stream. + + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value that represents a BSON object id. + + The Object ID value to write. + + + + Writes a BSON regex. + + The regex pattern. + The regex options. + + + + Represents a BSON Oid (object id). + + + + + Gets or sets the value of the Oid. + + The value of the Oid. + + + + Initializes a new instance of the class. + + The Oid value. + + + + Converts a binary value to and from a base 64 string value. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Create a custom object + + The object type to convert. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Creates an object which will then be populated by the serializer. + + Type of the object. + The created object. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Provides a base class for converting a to and from JSON. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a F# discriminated union type to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an Entity Framework EntityKey to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an ExpandoObject to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an to and from its name string value. + + + + + Gets or sets a value indicating whether the written enum text should be camel case. + + true if the written enum text will be camel case; otherwise, false. + + + + Gets or sets a value indicating whether integer values are allowed. + + true if integers are allowed; otherwise, false. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + true if the written enum text will be camel case; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from a string (e.g. "1.2.3.4"). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). + + + + + Gets or sets the date time styles used when converting a date to and from JSON. + + The date time styles used when converting a date to and from JSON. + + + + Gets or sets the date time format used when converting a date to and from JSON. + + The date time format used when converting a date to and from JSON. + + + + Gets or sets the culture used when converting a date to and from JSON. + + The culture used when converting a date to and from JSON. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Converts XML to and from JSON. + + + + + Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. + + The name of the deserialize root element. + + + + Gets or sets a flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + true if the array attibute is written to the XML; otherwise, false. + + + + Gets or sets a value indicating whether to write the root JSON object. + + true if the JSON root object is omitted; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The calling serializer. + The value. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Checks if the attributeName is a namespace attribute. + + Attribute name to test. + The attribute name prefix if it has one, otherwise an empty string. + true if attribute name is for a namespace attribute, otherwise false. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Specifies how constructors are used when initializing objects during deserialization by the . + + + + + First attempt to use the public default constructor, then fall back to single parameterized constructor, then the non-public default constructor. + + + + + Json.NET will use a non-public default constructor before falling back to a parameterized constructor. + + + + + Specifies float format handling options when writing special floating point numbers, e.g. , + and with . + + + + + Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". + + + + + Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. + Note that this will produce non-valid JSON. + + + + + Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. + + + + + Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Floating point numbers are parsed to . + + + + + Floating point numbers are parsed to . + + + + + Provides an interface for using pooled arrays. + + The array type content. + + + + Rent a array from the pool. This array must be returned when it is no longer needed. + + The minimum required length of the array. The returned array may be longer. + The rented array from the pool. This array must be returned when it is no longer needed. + + + + Return an array to the pool. + + The array that is being returned. + + + + Instructs the how to serialize the collection. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + The exception thrown when an error occurs during JSON serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Specifies how dates are formatted when writing JSON text. + + + + + Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". + + + + + Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". + + + + + Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. + + + + + Date formatted strings are not parsed to a date type and are read as strings. + + + + + Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . + + + + + Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . + + + + + Specifies how to treat the time value when converting between string and . + + + + + Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. + + + + + Treat as a UTC. If the object represents a local time, it is converted to a UTC. + + + + + Treat as a local time if a is being converted to a string. + If a string is being converted to , convert to a local time if a time zone is specified. + + + + + Time zone information should be preserved when converting. + + + + + Specifies formatting options for the . + + + + + No special formatting is applied. This is the default. + + + + + Causes child objects to be indented according to the and settings. + + + + + Instructs the to use the specified constructor when deserializing that object. + + + + + Instructs the to deserialize properties with no matching class member into the specified collection + and write values during serialization. + + + + + Gets or sets a value that indicates whether to write extension data when serializing the object. + + + true to write extension data when serializing the object; otherwise, false. The default is true. + + + + + Gets or sets a value that indicates whether to read extension data when deserializing the object. + + + true to read extension data when deserializing the object; otherwise, false. The default is true. + + + + + Initializes a new instance of the class. + + + + + Instructs the to always serialize the member, and require the member has a value. + + + + + Specifies how JSON comments are handled when loading JSON. + + + + + Ignore comments. + + + + + Load comments as a with type . + + + + + Specifies how line information is handled when loading JSON. + + + + + Ignore line information. + + + + + Load line information. + + + + + Specifies the settings used when loading JSON. + + + + + Gets or sets how JSON comments are handled when loading JSON. + + The JSON comment handling. + + + + Gets or sets how JSON line info is handled when loading JSON. + + The JSON line info handling. + + + + Specifies the settings used when merging JSON. + + + + + Gets or sets the method used when merging JSON arrays. + + The method used when merging JSON arrays. + + + + Gets or sets how how null value properties are merged. + + How null value properties are merged. + + + + Specifies how JSON arrays are merged together. + + + + Concatenate arrays. + + + Union arrays, skipping items that already exist. + + + Replace all array items. + + + Merge array items together, matched by index. + + + + Specifies how null value properties are merged. + + + + + The content's null value properties will be ignored during merging. + + + + + The content's null value properties will be merged. + + + + + Represents a raw JSON string. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The raw json. + + + + Creates an instance of with the content of the reader's current token. + + The reader. + An instance of with the content of the reader's current token. + + + + Represents a view of a . + + + + + Initializes a new instance of the class. + + The name. + + + + When overridden in a derived class, returns whether resetting an object changes its value. + + + true if resetting the component changes its value; otherwise, false. + + The component to test for reset capability. + + + + When overridden in a derived class, gets the current value of the property on a component. + + + The value of a property for a given component. + + The component with the property for which to retrieve the value. + + + + + When overridden in a derived class, resets the value for this property of the component to the default value. + + The component with the property value that is to be reset to the default value. + + + + + When overridden in a derived class, sets the value of the component to a different value. + + The component with the property value that is to be set. + The new value. + + + + + When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. + + + true if the property should be persisted; otherwise, false. + + The component with the property to be examined for persistence. + + + + When overridden in a derived class, gets the type of the component this property is bound to. + + + A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. + + + + + When overridden in a derived class, gets a value indicating whether this property is read-only. + + + true if the property is read-only; otherwise, false. + + + + + When overridden in a derived class, gets the type of the property. + + + A that represents the type of the property. + + + + + Gets the hash code for the name of the member. + + + + The hash code for the name of the member. + + + + + Represents a collection of objects. + + The type of token + + + + Gets the with the specified key. + + + + + + Compares tokens to determine whether they are equal. + + + + + Determines whether the specified objects are equal. + + The first object of type to compare. + The second object of type to compare. + + true if the specified objects are equal; otherwise, false. + + + + + Returns a hash code for the specified object. + + The for which a hash code is to be returned. + A hash code for the specified object. + The type of is a reference type and is null. + + + + Contains the LINQ to JSON extension methods. + + + + + Returns a collection of tokens that contains the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the descendants of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, and the descendants of every token in the source collection. + + + + Returns a collection of child properties of every object in the source collection. + + An of that contains the source collection. + An of that contains the properties of every object in the source collection. + + + + Returns a collection of child values of every object in the source collection with the given key. + + An of that contains the source collection. + The token key. + An of that contains the values of every token in the source collection with the given key. + + + + Returns a collection of child values of every object in the source collection. + + An of that contains the source collection. + An of that contains the values of every token in the source collection. + + + + Returns a collection of converted child values of every object in the source collection with the given key. + + The type to convert the values to. + An of that contains the source collection. + The token key. + An that contains the converted values of every token in the source collection with the given key. + + + + Returns a collection of converted child values of every object in the source collection. + + The type to convert the values to. + An of that contains the source collection. + An that contains the converted values of every token in the source collection. + + + + Converts the value. + + The type to convert the value to. + A cast as a of . + A converted value. + + + + Converts the value. + + The source collection type. + The type to convert the value to. + A cast as a of . + A converted value. + + + + Returns a collection of child tokens of every array in the source collection. + + The source collection type. + An of that contains the source collection. + An of that contains the values of every token in the source collection. + + + + Returns a collection of converted child tokens of every array in the source collection. + + An of that contains the source collection. + The type to convert the values to. + The source collection type. + An that contains the converted values of every token in the source collection. + + + + Returns the input typed as . + + An of that contains the source collection. + The input typed as . + + + + Returns the input typed as . + + The source collection type. + An of that contains the source collection. + The input typed as . + + + + Represents a JSON constructor. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets or sets the name of this constructor. + + The constructor name. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name. + + The constructor name. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Represents a token that can contain other tokens. + + + + + Occurs when the list changes or an item in the list changes. + + + + + Occurs before an item is added to the collection. + + + + + Occurs when the items list of the collection has changed, or the collection is reset. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Get the first child token of this token. + + + A containing the first child token of the . + + + + + Get the last child token of this token. + + + A containing the last child token of the . + + + + + Returns a collection of the child tokens of this token, in document order. + + + An of containing the child tokens of this , in document order. + + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + + A containing the child values of this , in document order. + + + + + Returns a collection of the descendant tokens for this token in document order. + + An containing the descendant tokens of the . + + + + Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. + + An containing this token, and all the descendant tokens of the . + + + + Adds the specified content as children of this . + + The content to be added. + + + + Adds the specified content as the first children of this . + + The content to be added. + + + + Creates an that can be used to add tokens to the . + + An that is ready to have content written to it. + + + + Replaces the children nodes of this token with the specified content. + + The content. + + + + Removes the child nodes from this token. + + + + + Merge the specified content into this . + + The content to be merged. + + + + Merge the specified content into this using . + + The content to be merged. + The used to merge the content. + + + + Gets the count of child JSON tokens. + + The count of child JSON tokens + + + + Represents a collection of objects. + + The type of token + + + + An empty collection of objects. + + + + + Initializes a new instance of the struct. + + The enumerable. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Gets the with the specified key. + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Represents a JSON object. + + + + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Occurs when a property value changes. + + + + + Occurs when a property value is changing. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Gets the node type for this . + + The type. + + + + Gets an of this object's properties. + + An of this object's properties. + + + + Gets a the specified name. + + The property name. + A with the specified name or null. + + + + Gets an of this object's property values. + + An of this object's property values. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the with the specified property name. + + + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified property name. + + Name of the property. + The with the specified property name. + + + + Gets the with the specified property name. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + Name of the property. + One of the enumeration values that specifies how the strings will be compared. + The with the specified property name. + + + + Tries to get the with the specified property name. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + Name of the property. + The value. + One of the enumeration values that specifies how the strings will be compared. + true if a value was successfully retrieved; otherwise, false. + + + + Adds the specified property name. + + Name of the property. + The value. + + + + Removes the property with the specified name. + + Name of the property. + true if item was successfully removed; otherwise, false. + + + + Tries the get value. + + Name of the property. + The value. + true if a value was successfully retrieved; otherwise, false. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Returns the properties for this instance of a component. + + + A that represents the properties for this component instance. + + + + + Returns the properties for this instance of a component using the attribute array as a filter. + + An array of type that is used as a filter. + + A that represents the filtered properties for this component instance. + + + + + Returns a collection of custom attributes for this instance of a component. + + + An containing the attributes for this object. + + + + + Returns the class name of this instance of a component. + + + The class name of the object, or null if the class does not have a name. + + + + + Returns the name of this instance of a component. + + + The name of the object, or null if the object does not have a name. + + + + + Returns a type converter for this instance of a component. + + + A that is the converter for this object, or null if there is no for this object. + + + + + Returns the default event for this instance of a component. + + + An that represents the default event for this object, or null if this object does not have events. + + + + + Returns the default property for this instance of a component. + + + A that represents the default property for this object, or null if this object does not have properties. + + + + + Returns an editor of the specified type for this instance of a component. + + A that represents the editor for this object. + + An of the specified type that is the editor for this object, or null if the editor cannot be found. + + + + + Returns the events for this instance of a component using the specified attribute array as a filter. + + An array of type that is used as a filter. + + An that represents the filtered events for this component instance. + + + + + Returns the events for this instance of a component. + + + An that represents the events for this component instance. + + + + + Returns an object that contains the property described by the specified property descriptor. + + A that represents the property whose owner is to be found. + + An that represents the owner of the specified property. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Represents a JSON array. + + + + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the at the specified index. + + + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + The is read-only. + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + The is read-only. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Adds an item to the . + + The object to add to the . + The is read-only. + + + + Removes all items from the . + + The is read-only. + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Copies to. + + The array. + Index of the array. + + + + Gets a value indicating whether the is read-only. + + true if the is read-only; otherwise, false. + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + The is read-only. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Gets the at the reader's current position. + + + + + Initializes a new instance of the class. + + The token to read from. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Gets the path of the current JSON token. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets the at the writer's current position. + + + + + Gets the token being writen. + + The token being writen. + + + + Initializes a new instance of the class writing to the given . + + The container being written to. + + + + Initializes a new instance of the class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end. + + The token. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Represents an abstract JSON token. + + + + + Gets a comparer that can compare two tokens for value equality. + + A that can compare two nodes for value equality. + + + + Gets or sets the parent. + + The parent. + + + + Gets the root of this . + + The root of this . + + + + Gets the node type for this . + + The type. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Compares the values of two tokens, including the values of all descendant tokens. + + The first to compare. + The second to compare. + true if the tokens are equal; otherwise false. + + + + Gets the next sibling token of this node. + + The that contains the next sibling token. + + + + Gets the previous sibling token of this node. + + The that contains the previous sibling token. + + + + Gets the path of the JSON token. + + + + + Adds the specified content immediately after this token. + + A content object that contains simple content or a collection of content objects to be added after this token. + + + + Adds the specified content immediately before this token. + + A content object that contains simple content or a collection of content objects to be added before this token. + + + + Returns a collection of the ancestor tokens of this token. + + A collection of the ancestor tokens of this token. + + + + Returns a collection of tokens that contain this token, and the ancestors of this token. + + A collection of tokens that contain this token, and the ancestors of this token. + + + + Returns a collection of the sibling tokens after this token, in document order. + + A collection of the sibling tokens after this tokens, in document order. + + + + Returns a collection of the sibling tokens before this token, in document order. + + A collection of the sibling tokens before this token, in document order. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets the with the specified key converted to the specified type. + + The type to convert the token to. + The token key. + The converted token value. + + + + Get the first child token of this token. + + A containing the first child token of the . + + + + Get the last child token of this token. + + A containing the last child token of the . + + + + Returns a collection of the child tokens of this token, in document order. + + An of containing the child tokens of this , in document order. + + + + Returns a collection of the child tokens of this token, in document order, filtered by the specified type. + + The type to filter the child tokens on. + A containing the child tokens of this , in document order. + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + A containing the child values of this , in document order. + + + + Removes this token from its parent. + + + + + Replaces this token with the specified token. + + The value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Returns the indented JSON for this token. + + + The indented JSON for this token. + + + + + Returns the JSON for this token using the given formatting and converters. + + Indicates how the output is formatted. + A collection of which will be used when writing the token. + The JSON for this token using the given formatting and converters. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to []. + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from [] to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Creates an for this token. + + An that can be used to read this token and its descendants. + + + + Creates a from an object. + + The object that will be used to create . + A with the value of the specified object + + + + Creates a from an object using the specified . + + The object that will be used to create . + The that will be used when reading the object. + A with the value of the specified object + + + + Creates the specified .NET type from the . + + The object type that the token will be deserialized to. + The new object created from the JSON value. + + + + Creates the specified .NET type from the . + + The object type that the token will be deserialized to. + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The object type that the token will be deserialized to. + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The object type that the token will be deserialized to. + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Creates a from a . + + An positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + Creates a from a . + + An positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Selects a using a JPath expression. Selects the token that matches the object path. + + + A that contains a JPath expression. + + A , or null. + + + + Selects a using a JPath expression. Selects the token that matches the object path. + + + A that contains a JPath expression. + + A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. + A . + + + + Selects a collection of elements using a JPath expression. + + + A that contains a JPath expression. + + An that contains the selected elements. + + + + Selects a collection of elements using a JPath expression. + + + A that contains a JPath expression. + + A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. + An that contains the selected elements. + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Creates a new instance of the . All child tokens are recursively cloned. + + A new instance of the . + + + + Adds an object to the annotation list of this . + + The annotation to add. + + + + Get the first annotation object of the specified type from this . + + The type of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets the first annotation object of the specified type from this . + + The of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets a collection of annotations of the specified type for this . + + The type of the annotations to retrieve. + An that contains the annotations for this . + + + + Gets a collection of annotations of the specified type for this . + + The of the annotations to retrieve. + An of that contains the annotations that match the specified type for this . + + + + Removes the annotations of the specified type from this . + + The type of annotations to remove. + + + + Removes the annotations of the specified type from this . + + The of annotations to remove. + + + + Represents a JSON property. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the property name. + + The property name. + + + + Gets or sets the property value. + + The property value. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Specifies the type of token. + + + + + No token type has been set. + + + + + A JSON object. + + + + + A JSON array. + + + + + A JSON constructor. + + + + + A JSON object property. + + + + + A comment. + + + + + An integer value. + + + + + A float value. + + + + + A string value. + + + + + A boolean value. + + + + + A null value. + + + + + An undefined value. + + + + + A date value. + + + + + A raw JSON value. + + + + + A collection of bytes value. + + + + + A Guid value. + + + + + A Uri value. + + + + + A TimeSpan value. + + + + + Represents a value in JSON (string, integer, date, etc). + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Creates a comment with the given value. + + The value. + A comment with the given value. + + + + Creates a string with the given value. + + The value. + A string with the given value. + + + + Creates a null value. + + A null value. + + + + Creates a undefined value. + + A undefined value. + + + + Gets the node type for this . + + The type. + + + + Gets or sets the underlying token value. + + The underlying token value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Indicates whether the current object is equal to another object of the same type. + + + true if the current object is equal to the parameter; otherwise, false. + + An object to compare with this object. + + + + Determines whether the specified is equal to the current . + + The to compare with the current . + + true if the specified is equal to the current ; otherwise, false. + + + The parameter is null. + + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format provider. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + The format provider. + + A that represents this instance. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + 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. + + An object to compare with this instance. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: + Value + Meaning + Less than zero + This instance is less than . + Zero + This instance is equal to . + Greater than zero + This instance is greater than . + + + is not the same type as this instance. + + + + + Specifies metadata property handling options for the . + + + + + Read metadata properties located at the start of a JSON object. + + + + + Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. + + + + + Do not try to read metadata properties. + + + + + A camel case naming strategy. + + + + + Initializes a new instance of the class. + + + A flag indicating whether dictionary keys should be processed. + + + A flag indicating whether explicitly specified property names should be processed, + e.g. a property name customized with a . + + + + + Initializes a new instance of the class. + + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + The default naming strategy. Property names and dictionary keys are unchanged. + + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + Represents a trace writer that writes to the application's instances. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of Info will exclude Verbose messages and include Info, + Warning and Error messages. + + + The that will be used to filter the trace messages passed to the writer. + + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Get and set values for a using dynamic methods. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Provides methods to get attributes. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Represents a trace writer. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of Info will exclude Verbose messages and include Info, + Warning and Error messages. + + The that will be used to filter the trace messages passed to the writer. + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Contract details for a used by the . + + + + + Gets or sets the default collection items . + + The converter. + + + + Gets or sets a value indicating whether the collection items preserve object references. + + true if collection items preserve object references; otherwise, false. + + + + Gets or sets the collection item reference loop handling. + + The reference loop handling. + + + + Gets or sets the collection item type name handling. + + The type name handling. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Represents a trace writer that writes to memory. When the trace message limit is + reached then old trace messages will be removed as new messages are added. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of Info will exclude Verbose messages and include Info, + Warning and Error messages. + + + The that will be used to filter the trace messages passed to the writer. + + + + + Initializes a new instance of the class. + + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Returns an enumeration of the most recent trace messages. + + An enumeration of the most recent trace messages. + + + + Returns a of the most recent trace messages. + + + A of the most recent trace messages. + + + + + A base class for resolving how property names and dictionary keys are serialized. + + + + + A flag indicating whether dictionary keys should be processed. + Defaults to false. + + + + + A flag indicating whether explicitly specified property names, + e.g. a property name customized with a , should be processed. + Defaults to false. + + + + + Gets the serialized name for a given property name. + + The initial property name. + A flag indicating whether the property has had a name explicitly specfied. + The serialized property name. + + + + Gets the serialized key for a given dictionary key. + + The initial dictionary key. + The serialized dictionary key. + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + Provides methods to get attributes from a , , or . + + + + + Initializes a new instance of the class. + + The instance to get attributes for. This parameter should be a , , or . + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + A snake case naming strategy. + + + + + Initializes a new instance of the class. + + + A flag indicating whether dictionary keys should be processed. + + + A flag indicating whether explicitly specified property names should be processed, + e.g. a property name customized with a . + + + + + Initializes a new instance of the class. + + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + Contract details for a used by the . + + + + + Gets the object's properties. + + The object's properties. + + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Gets or sets the ISerializable object constructor. + + The ISerializable object constructor. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Get and set values for a using dynamic methods. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Provides data for the Error event. + + + + + Gets the current object the error event is being raised against. + + The current object the error event is being raised against. + + + + Gets the error context. + + The error context. + + + + Initializes a new instance of the class. + + The current object. + The error context. + + + + Resolves member mappings for a type, camel casing property names. + + + + + Initializes a new instance of the class. + + + + + Used by to resolves a for a given . + + + + + Gets a value indicating whether members are being get and set using dynamic code generation. + This value is determined by the runtime permissions available. + + + true if using dynamic code generation; otherwise, false. + + + + + Gets or sets the default members search flags. + + The default members search flags. + + + + Gets or sets a value indicating whether compiler generated members should be serialized. + + + true if serialized compiler generated members; otherwise, false. + + + + + Gets or sets a value indicating whether to ignore the interface when serializing and deserializing types. + + + true if the interface will be ignored when serializing and deserializing types; otherwise, false. + + + + + Gets or sets a value indicating whether to ignore the attribute when serializing and deserializing types. + + + true if the attribute will be ignored when serializing and deserializing types; otherwise, false. + + + + + Gets or sets the naming strategy used to resolve how property names and dictionary keys are serialized. + + The naming strategy used to resolve how property names and dictionary keys are serialized. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + + If set to true the will use a cached shared with other resolvers of the same type. + Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only + happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different + results. When set to false it is highly recommended to reuse instances with the . + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Gets the serializable members for the type. + + The type to get serializable members for. + The serializable members for the type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates the constructor parameters. + + The constructor to create properties for. + The type's member properties. + Properties for the given . + + + + Creates a for the given . + + The matching member property. + The constructor parameter. + A created for the given . + + + + Resolves the default for the contract. + + Type of the object. + The contract's default . + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Determines which contract type is created for the given type. + + Type of the object. + A for the given type. + + + + Creates properties for the given . + + The type to create properties for. + /// The member serialization mode for the type. + Properties for the given . + + + + Creates the used by the serializer to get and set values from a member. + + The member. + The used by the serializer to get and set values from a member. + + + + Creates a for the given . + + The member's parent . + The member to create a for. + A created for the given . + + + + Resolves the name of the property. + + Name of the property. + Resolved name of the property. + + + + Resolves the key of the dictionary. By default is used to resolve dictionary keys. + + Key of the dictionary. + Resolved key of the dictionary. + + + + Gets the resolved name of the property. + + Name of the property. + Name of the property. + + + + The default serialization binder used when resolving and loading classes from type names. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + The type of the object the formatter creates a new instance of. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + The type of the object the formatter creates a new instance of. + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + + + Provides information surrounding an error. + + + + + Gets the error. + + The error. + + + + Gets the original object that caused the error. + + The original object that caused the error. + + + + Gets the member that caused the error. + + The member that caused the error. + + + + Gets the path of the JSON location where the error occurred. + + The path of the JSON location where the error occurred. + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + Used by to resolves a for a given . + + + + + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Provides methods to get and set values. + + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Contract details for a used by the . + + + + + Gets the of the collection items. + + The of the collection items. + + + + Gets a value indicating whether the collection type is a multidimensional array. + + true if the collection type is a multidimensional array; otherwise, false. + + + + Gets or sets the function used to create the object. When set this function will override . + + The function used to create the object. + + + + Gets a value indicating whether the creator has a parameter with the collection values. + + true if the creator has a parameter with the collection values; otherwise, false. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Handles serialization callback events. + + The object that raised the callback event. + The streaming context. + + + + Handles serialization error callback events. + + The object that raised the callback event. + The streaming context. + The error context. + + + + Sets extension data for an object during deserialization. + + The object to set extension data on. + The extension data key. + The extension data value. + + + + Gets extension data for an object during serialization. + + The object to set extension data on. + + + + Contract details for a used by the . + + + + + Gets the underlying type for the contract. + + The underlying type for the contract. + + + + Gets or sets the type created during deserialization. + + The type created during deserialization. + + + + Gets or sets whether this type contract is serialized as a reference. + + Whether this type contract is serialized as a reference. + + + + Gets or sets the default for this contract. + + The converter. + + + + Gets or sets all methods called immediately after deserialization of the object. + + The methods called immediately after deserialization of the object. + + + + Gets or sets all methods called during deserialization of the object. + + The methods called during deserialization of the object. + + + + Gets or sets all methods called after serialization of the object graph. + + The methods called after serialization of the object graph. + + + + Gets or sets all methods called before serialization of the object. + + The methods called before serialization of the object. + + + + Gets or sets all method called when an error is thrown during the serialization of the object. + + The methods called when an error is thrown during the serialization of the object. + + + + Gets or sets the method called immediately after deserialization of the object. + + The method called immediately after deserialization of the object. + + + + Gets or sets the method called during deserialization of the object. + + The method called during deserialization of the object. + + + + Gets or sets the method called after serialization of the object graph. + + The method called after serialization of the object graph. + + + + Gets or sets the method called before serialization of the object. + + The method called before serialization of the object. + + + + Gets or sets the method called when an error is thrown during the serialization of the object. + + The method called when an error is thrown during the serialization of the object. + + + + Gets or sets the default creator method used to create the object. + + The default creator method used to create the object. + + + + Gets or sets a value indicating whether the default creator is non public. + + true if the default object creator is non-public; otherwise, false. + + + + Contract details for a used by the . + + + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Gets or sets the dictionary key resolver. + + The dictionary key resolver. + + + + Gets the of the dictionary keys. + + The of the dictionary keys. + + + + Gets the of the dictionary values. + + The of the dictionary values. + + + + Gets or sets the function used to create the object. When set this function will override . + + The function used to create the object. + + + + Gets a value indicating whether the creator has a parameter with the dictionary values. + + true if the creator has a parameter with the dictionary values; otherwise, false. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Maps a JSON property to a .NET member or constructor parameter. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the type that declared this property. + + The type that declared this property. + + + + Gets or sets the order of serialization of a member. + + The numeric order of serialization. + + + + Gets or sets the name of the underlying member or parameter. + + The name of the underlying member or parameter. + + + + Gets the that will get and set the during serialization. + + The that will get and set the during serialization. + + + + Gets or sets the for this property. + + The for this property. + + + + Gets or sets the type of the property. + + The type of the property. + + + + Gets or sets the for the property. + If set this converter takes presidence over the contract converter for the property type. + + The converter. + + + + Gets or sets the member converter. + + The member converter. + + + + Gets or sets a value indicating whether this is ignored. + + true if ignored; otherwise, false. + + + + Gets or sets a value indicating whether this is readable. + + true if readable; otherwise, false. + + + + Gets or sets a value indicating whether this is writable. + + true if writable; otherwise, false. + + + + Gets or sets a value indicating whether this has a member attribute. + + true if has a member attribute; otherwise, false. + + + + Gets the default value. + + The default value. + + + + Gets or sets a value indicating whether this is required. + + A value indicating whether this is required. + + + + Gets or sets a value indicating whether this property preserves object references. + + + true if this instance is reference; otherwise, false. + + + + + Gets or sets the property null value handling. + + The null value handling. + + + + Gets or sets the property default value handling. + + The default value handling. + + + + Gets or sets the property reference loop handling. + + The reference loop handling. + + + + Gets or sets the property object creation handling. + + The object creation handling. + + + + Gets or sets or sets the type name handling. + + The type name handling. + + + + Gets or sets a predicate used to determine whether the property should be serialize. + + A predicate used to determine whether the property should be serialize. + + + + Gets or sets a predicate used to determine whether the property should be deserialized. + + A predicate used to determine whether the property should be deserialized. + + + + Gets or sets a predicate used to determine whether the property should be serialized. + + A predicate used to determine whether the property should be serialized. + + + + Gets or sets an action used to set whether the property has been deserialized. + + An action used to set whether the property has been deserialized. + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets or sets the converter used when serializing the property's collection items. + + The collection's items converter. + + + + Gets or sets whether this property's collection items are serialized as a reference. + + Whether this property's collection items are serialized as a reference. + + + + Gets or sets the the type name handling used when serializing the property's collection items. + + The collection's items type name handling. + + + + Gets or sets the the reference loop handling used when serializing the property's collection items. + + The collection's items reference loop handling. + + + + A collection of objects. + + + + + Initializes a new instance of the class. + + The type. + + + + When implemented in a derived class, extracts the key from the specified element. + + The element from which to extract the key. + The key for the specified element. + + + + Adds a object. + + The property to add to the collection. + + + + Gets the closest matching object. + First attempts to get an exact case match of propertyName and then + a case insensitive match. + + Name of the property. + A matching property if found. + + + + Gets a property by property name. + + The name of the property to get. + Type property name string comparison. + A matching property if found. + + + + Used to resolve references when serializing and deserializing JSON by the . + + + + + Resolves a reference to its object. + + The serialization context. + The reference to resolve. + The object that + + + + Gets the reference for the sepecified object. + + The serialization context. + The object to get a reference for. + The reference to the object. + + + + Determines whether the specified object is referenced. + + The serialization context. + The object to test for a reference. + + true if the specified object is referenced; otherwise, false. + + + + + Adds a reference to the specified object. + + The serialization context. + The reference. + The object to reference. + + + + Contract details for a used by the . + + + + + Gets or sets the object member serialization. + + The member object serialization. + + + + Gets or sets a value that indicates whether the object's properties are required. + + + A value indicating whether the object's properties are required. + + + + + Gets the object's properties. + + The object's properties. + + + + Gets the constructor parameters required for any non-default constructor + + + + + Gets a collection of instances that define the parameters used with . + + + + + Gets or sets the override constructor used to create the object. + This is set when a constructor is marked up using the + JsonConstructor attribute. + + The override constructor. + + + + Gets or sets the parametrized constructor used to create the object. + + The parametrized constructor. + + + + Gets or sets the function used to create the object. When set this function will override . + This function is called with a collection of arguments which are defined by the collection. + + The function used to create the object. + + + + Gets or sets the extension data setter. + + + + + Gets or sets the extension data getter. + + + + + Gets or sets the extension data value type. + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Lookup and create an instance of the JsonConverter type described by the argument. + + The JsonConverter type to create. + Optional arguments to pass to an initializing constructor of the JsonConverter. + If null, the default constructor is used. + + + + Get and set values for a using reflection. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + + + Represents a method that constructs an object. + + The object type to create. + + + + Specifies how strings are escaped when writing JSON text. + + + + + Only control characters (e.g. newline) are escaped. + + + + + All non-ASCII and control characters (e.g. newline) are escaped. + + + + + HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic that returns a result + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic, but uses one of the arguments for + the result. + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic, but uses one of the arguments for + the result. + + + + + Returns a Restrictions object which includes our current restrictions merged + with a restriction limiting our type + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert or cast the value to. + + The converted type. If conversion was unsuccessful, the initial value + is returned if assignable to the target type. + + + + + Gets a dictionary of the names and values of an Enum type. + + + + + + Gets a dictionary of the names and values of an Enum type. + + The enum type to get names and values for. + + + + + Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Adds the elements of the specified collection to the specified generic IList. + + The list to add to. + The collection of elements to add. + + + + Gets the type of the typed collection's items. + + The type. + The type of the typed collection's items. + + + + Gets the member's underlying type. + + The member. + The underlying type of the member. + + + + Determines whether the member is an indexed property. + + The member. + + true if the member is an indexed property; otherwise, false. + + + + + Determines whether the property is an indexed property. + + The property. + + true if the property is an indexed property; otherwise, false. + + + + + Gets the member's value on the object. + + The member. + The target object. + The member's value on the object. + + + + Sets the member's value on the target object. + + The member. + The target. + The value. + + + + Determines whether the specified MemberInfo can be read. + + The MemberInfo to determine whether can be read. + /// if set to true then allow the member to be gotten non-publicly. + + true if the specified MemberInfo can be read; otherwise, false. + + + + + Determines whether the specified MemberInfo can be set. + + The MemberInfo to determine whether can be set. + if set to true then allow the member to be set non-publicly. + if set to true then allow the member to be set if read-only. + + true if the specified MemberInfo can be set; otherwise, false. + + + + + Determines whether the string is all white space. Empty string will return false. + + The string to test whether it is all white space. + + true if the string is all white space; otherwise, false. + + + + + Indicating whether a property is required. + + + + + The property is not required. The default state. + + + + + The property must be defined in JSON but can be a null value. + + + + + The property must be defined in JSON and cannot be a null value. + + + + + The property is not required but it cannot be a null value. + + + + + Specifies reference handling options for the . + Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. + + + + + + + + Do not preserve references when serializing types. + + + + + Preserve references when serializing into a JSON object structure. + + + + + Preserve references when serializing into a JSON array structure. + + + + + Preserve references when serializing. + + + + + Provides an interface to enable a class to return line and position information. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Gets the current line position. + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Instructs the how to serialize the collection. + + + + + Gets or sets a value indicating whether null items are allowed in the collection. + + true if null items are allowed in the collection; otherwise, false. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with a flag indicating whether the array can contain null items + + A flag indicating whether the array can contain null items. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Instructs the how to serialize the object. + + + + + Gets or sets the id. + + The id. + + + + Gets or sets the title. + + The title. + + + + Gets or sets the description. + + The description. + + + + Gets or sets the collection's items converter. + + The collection's items converter. + + + + The parameter list to use when constructing the described by ItemConverterType. + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] + + + + + Gets or sets the of the . + + The of the . + + + + The parameter list to use when constructing the described by NamingStrategyType. + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + [JsonContainer(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })] + + + + + Gets or sets a value that indicates whether to preserve object references. + + + true to keep object reference; otherwise, false. The default is false. + + + + + Gets or sets a value that indicates whether to preserve collection's items references. + + + true to keep collection's items object references; otherwise, false. The default is false. + + + + + Gets or sets the reference loop handling used when serializing the collection's items. + + The reference loop handling. + + + + Gets or sets the type name handling used when serializing the collection's items. + + The type name handling. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Specifies default value handling options for the . + + + + + + + + + Include members where the member value is the same as the member's default value when serializing objects. + Included members are written to JSON. Has no effect when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + so that is is not written to JSON. + This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, + decimals and floating point numbers; and false for booleans). The default value ignored can be changed by + placing the on the property. + + + + + Members with a default value but no JSON will be set to their default value when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + and sets members to their default value when deserializing. + + + + + Instructs the to use the specified when serializing the member or class. + + + + + Gets the of the . + + The of the . + + + + The parameter list to use when constructing the described by ConverterType. + If null, the default constructor is used. + + + + + Initializes a new instance of the class. + + Type of the . + + + + Initializes a new instance of the class. + + Type of the . + Parameter list to use when constructing the . Can be null. + + + + Instructs the how to serialize the object. + + + + + Gets or sets the member serialization. + + The member serialization. + + + + Gets or sets a value that indicates whether the object's properties are required. + + + A value indicating whether the object's properties are required. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified member serialization. + + The member serialization. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Specifies the settings on a object. + + + + + Gets or sets how reference loops (e.g. a class referencing itself) is handled. + + Reference loop handling. + + + + Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + Missing member handling. + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how null values are handled during serialization and deserialization. + + Null value handling. + + + + Gets or sets how null default are handled during serialization and deserialization. + + The default value handling. + + + + Gets or sets a collection that will be used during serialization. + + The converters. + + + + Gets or sets how object references are preserved by the serializer. + + The preserve references handling. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than TypeNameHandling.None. + + The type name handling. + + + + Gets or sets how metadata properties are used during deserialization. + + The metadata properties handling. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + The contract resolver. + + + + Gets or sets the equality comparer used by the serializer when comparing references. + + The equality comparer. + + + + Gets or sets the used by the serializer when resolving references. + + The reference resolver. + + + + Gets or sets a function that creates the used by the serializer when resolving references. + + A function that creates the used by the serializer when resolving references. + + + + Gets or sets the used by the serializer when writing trace messages. + + The trace writer. + + + + Gets or sets the used by the serializer when resolving type names. + + The binder. + + + + Gets or sets the error handler called during serialization and deserialization. + + The error handler called during serialization and deserialization. + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling during serialization and deserialization. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written as JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Gets a value indicating whether there will be a check for additional content after deserializing an object. + + + true if there will be a check for additional content after deserializing an object; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + + Represents a reader that provides validation. + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + Sets an event handler for receiving schema validation errors. + + + + + Gets the text value of the current JSON token. + + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the path of the current JSON token. + + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + + Gets the type of the current JSON token. + + + + + + Gets the Common Language Runtime (CLR) type for the current JSON token. + + + + + + Initializes a new instance of the class that + validates the content returned from the given . + + The to read from while validating. + + + + Gets or sets the schema. + + The schema. + + + + Gets the used to construct this . + + The specified in the constructor. + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a []. + + + A [] or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Specifies the member serialization options for the . + + + + + All public members are serialized by default. Members can be excluded using or . + This is the default member serialization mode. + + + + + Only members marked with or are serialized. + This member serialization mode can also be set by marking the class with . + + + + + All public and private fields are serialized. Members can be excluded using or . + This member serialization mode can also be set by marking the class with + and setting IgnoreSerializableAttribute on to false. + + + + + Specifies how object creation is handled by the . + + + + + Reuse existing objects, create new objects when needed. + + + + + Only reuse existing objects. + + + + + Always create new objects. + + + + + Represents a reader that provides fast, non-cached, forward-only access to JSON text data. + + + + + Initializes a new instance of the class with the specified . + + The TextReader containing the XML data to read. + + + + Gets or sets the reader's character buffer pool. + + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a []. + + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Changes the state to closed. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Gets the current line position. + + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Instructs the to always serialize the member with the specified name. + + + + + Gets or sets the used when serializing the property's collection items. + + The collection's items . + + + + The parameter list to use when constructing the described by ItemConverterType. + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] + + + + + Gets or sets the of the . + + The of the . + + + + The parameter list to use when constructing the described by NamingStrategyType. + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + [JsonProperty(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })] + + + + + Gets or sets the null value handling used when serializing this property. + + The null value handling. + + + + Gets or sets the default value handling used when serializing this property. + + The default value handling. + + + + Gets or sets the reference loop handling used when serializing this property. + + The reference loop handling. + + + + Gets or sets the object creation handling used when deserializing this property. + + The object creation handling. + + + + Gets or sets the type name handling used when serializing this property. + + The type name handling. + + + + Gets or sets whether this property's value is serialized as a reference. + + Whether this property's value is serialized as a reference. + + + + Gets or sets the order of serialization of a member. + + The numeric order of serialization. + + + + Gets or sets a value indicating whether this property is required. + + + A value indicating whether this property is required. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the the reference loop handling used when serializing the property's collection items. + + The collection's items reference loop handling. + + + + Gets or sets the the type name handling used when serializing the property's collection items. + + The collection's items type name handling. + + + + Gets or sets whether this property's collection items are serialized as a reference. + + Whether this property's collection items are serialized as a reference. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified name. + + Name of the property. + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets or sets the writer's character array pool. + + + + + Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. + + + + + Gets or sets which character to use to quote attribute values. + + + + + Gets or sets which character to use for indenting when is set to Formatting.Indented. + + + + + Gets or sets a value indicating whether object names will be surrounded with quotes. + + + + + Creates an instance of the JsonWriter class using the specified . + + The TextWriter to write to. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the specified end token. + + The end token to write. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + The exception thrown when an error occurs while reading JSON text. + + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + The exception thrown when an error occurs while reading JSON text. + + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Converts an object to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + + Gets the of the JSON produced by the JsonConverter. + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + The of the JSON produced by the JsonConverter. + + + + Gets a value indicating whether this can read JSON. + + true if this can read JSON; otherwise, false. + + + + Gets a value indicating whether this can write JSON. + + true if this can write JSON; otherwise, false. + + + + Represents a collection of . + + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Specifies the state of the reader. + + + + + The Read method has not been called. + + + + + The end of the file has been reached successfully. + + + + + Reader is at a property. + + + + + Reader is at the start of an object. + + + + + Reader is in an object. + + + + + Reader is at the start of an array. + + + + + Reader is in an array. + + + + + The Close method has been called. + + + + + Reader has just read a value. + + + + + Reader is at the start of a constructor. + + + + + Reader in a constructor. + + + + + An error occurred that prevents the read operation from continuing. + + + + + The end of the file has been reached successfully. + + + + + Gets the current reader state. + + The current reader state. + + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the reader is closed. + + + true to close the underlying stream or when + the reader is closed; otherwise false. The default is true. + + + + + Gets or sets a value indicating whether multiple pieces of JSON content can + be read from a continuous stream without erroring. + + + true to support reading multiple pieces of JSON content; otherwise false. The default is false. + + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + Get or set how time zones are handling when reading JSON. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how custom date formatted strings are parsed when reading JSON. + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Gets the type of the current JSON token. + + + + + Gets the text value of the current JSON token. + + + + + Gets The Common Language Runtime (CLR) type for the current JSON token. + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the path of the current JSON token. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Initializes a new instance of the class with the specified . + + + + + Reads the next JSON token from the stream. + + true if the next token was read successfully; false if there are no more tokens to read. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a []. + + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Skips the children of the current token. + + + + + Sets the current token. + + The new token. + + + + Sets the current token and value. + + The new token. + The value. + + + + Sets the state based on current token type. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Changes the to Closed. + + + + + Provides methods for converting between common language runtime types and JSON types. + + + + + + + + Gets or sets a function that creates default . + Default settings are automatically used by serialization methods on , + and and on . + To serialize without using any default settings create a with + . + + + + + Represents JavaScript's boolean value true as a string. This field is read-only. + + + + + Represents JavaScript's boolean value false as a string. This field is read-only. + + + + + Represents JavaScript's null as a string. This field is read-only. + + + + + Represents JavaScript's undefined as a string. This field is read-only. + + + + + Represents JavaScript's positive infinity as a string. This field is read-only. + + + + + Represents JavaScript's negative infinity as a string. This field is read-only. + + + + + Represents JavaScript's NaN as a string. This field is read-only. + + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation using the specified. + + The value to convert. + The format the date will be converted to. + The time zone handling when the date is converted to a string. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation using the specified. + + The value to convert. + The format the date will be converted to. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + The string escape handling. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Serializes the specified object to a JSON string. + + The object to serialize. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using formatting. + + The object to serialize. + Indicates how the output is formatted. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using formatting and a collection of . + + The object to serialize. + Indicates how the output is formatted. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using . + + The object to serialize. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a type, formatting and . + + The object to serialize. + The used to serialize the object. + If this is null, default serialization settings will be used. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using formatting and . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a type, formatting and . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + A JSON string representation of the object. + + + + + Asynchronously serializes the specified object to a JSON string. + Serialization will happen on a new thread. + + The object to serialize. + + A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. + + + + + Asynchronously serializes the specified object to a JSON string using formatting. + Serialization will happen on a new thread. + + The object to serialize. + Indicates how the output is formatted. + + A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. + + + + + Asynchronously serializes the specified object to a JSON string using formatting and a collection of . + Serialization will happen on a new thread. + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. + + + + + Deserializes the JSON to a .NET object. + + The JSON to deserialize. + The deserialized object from the JSON string. + + + + Deserializes the JSON to a .NET object using . + + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The of object being deserialized. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The JSON to deserialize. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the given anonymous type. + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the given anonymous type using . + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the specified .NET type using a collection of . + + The type of the object to deserialize to. + The JSON to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using . + + The type of the object to deserialize to. + The object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using a collection of . + + The JSON to deserialize. + The type of the object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using . + + The JSON to deserialize. + The type of the object to deserialize to. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Asynchronously deserializes the JSON to the specified .NET type. + Deserialization will happen on a new thread. + + The type of the object to deserialize to. + The JSON to deserialize. + + A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. + + + + + Asynchronously deserializes the JSON to the specified .NET type using . + Deserialization will happen on a new thread. + + The type of the object to deserialize to. + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + + A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. + + + + + Asynchronously deserializes the JSON to the specified .NET type. + Deserialization will happen on a new thread. + + The JSON to deserialize. + + A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. + + + + + Asynchronously deserializes the JSON to the specified .NET type using . + Deserialization will happen on a new thread. + + The JSON to deserialize. + The type of the object to deserialize to. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + + A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. + + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + + + Populates the object with values from the JSON string using . + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + + + + Asynchronously populates the object with values from the JSON string using . + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + + A task that represents the asynchronous populate operation. + + + + + Serializes the XML node to a JSON string. + + The node to serialize. + A JSON string of the XmlNode. + + + + Serializes the XML node to a JSON string using formatting. + + The node to serialize. + Indicates how the output is formatted. + A JSON string of the XmlNode. + + + + Serializes the XML node to a JSON string using formatting and omits the root object if is true. + + The node to serialize. + Indicates how the output is formatted. + Omits writing the root object. + A JSON string of the XmlNode. + + + + Deserializes the XmlNode from a JSON string. + + The JSON string. + The deserialized XmlNode + + + + Deserializes the XmlNode from a JSON string nested in a root elment specified by . + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XmlNode + + + + Deserializes the XmlNode from a JSON string nested in a root elment specified by + and writes a .NET array attribute for collections. + + The JSON string. + The name of the root element to append when deserializing. + + A flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized XmlNode + + + + Serializes the to a JSON string. + + The node to convert to JSON. + A JSON string of the XNode. + + + + Serializes the to a JSON string using formatting. + + The node to convert to JSON. + Indicates how the output is formatted. + A JSON string of the XNode. + + + + Serializes the to a JSON string using formatting and omits the root object if is true. + + The node to serialize. + Indicates how the output is formatted. + Omits writing the root object. + A JSON string of the XNode. + + + + Deserializes the from a JSON string. + + The JSON string. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment specified by . + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment specified by + and writes a .NET array attribute for collections. + + The JSON string. + The name of the root element to append when deserializing. + + A flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized XNode + + + + The exception thrown when an error occurs during JSON serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Serializes and deserializes objects into and from the JSON format. + The enables you to control how objects are encoded into JSON. + + + + + Occurs when the errors during serialization and deserialization. + + + + + Gets or sets the used by the serializer when resolving references. + + + + + Gets or sets the used by the serializer when resolving type names. + + + + + Gets or sets the used by the serializer when writing trace messages. + + The trace writer. + + + + Gets or sets the equality comparer used by the serializer when comparing references. + + The equality comparer. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than TypeNameHandling.None. + + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how object references are preserved by the serializer. + + + + + Get or set how reference loops (e.g. a class referencing itself) is handled. + + + + + Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + + + + Get or set how null values are handled during serialization and deserialization. + + + + + Get or set how null default are handled during serialization and deserialization. + + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets how metadata properties are used during deserialization. + + The metadata properties handling. + + + + Gets a collection that will be used during serialization. + + Collection that will be used during serialization. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling during serialization and deserialization. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written as JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. + + + true if there will be a check for additional JSON content after deserializing an object; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Creates a new instance. + The will not use default settings + from . + + + A new instance. + The will not use default settings + from . + + + + + Creates a new instance using the specified . + The will not use default settings + from . + + The settings to be applied to the . + + A new instance using the specified . + The will not use default settings + from . + + + + + Creates a new instance. + The will use default settings + from . + + + A new instance. + The will use default settings + from . + + + + + Creates a new instance using the specified . + The will use default settings + from as well as the specified . + + The settings to be applied to the . + + A new instance using the specified . + The will use default settings + from as well as the specified . + + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Deserializes the JSON structure contained by the specified . + + The that contains the JSON structure to deserialize. + The being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The type of the object to deserialize. + The instance of being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + + + + Contains the JSON schema extension methods. + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + + Determines whether the is valid. + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + The source to test. + The schema to test with. + + true if the specified is valid; otherwise, false. + + + + + + Determines whether the is valid. + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + The source to test. + The schema to test with. + When this method returns, contains any error messages generated while validating. + + true if the specified is valid; otherwise, false. + + + + + + Validates the specified . + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + The source to test. + The schema to test with. + + + + + Validates the specified . + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + The source to test. + The schema to test with. + The validation event handler. + + + + + Returns detailed information about the schema exception. + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + + Resolves from an id. + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets or sets the loaded schemas. + + The loaded schemas. + + + + Initializes a new instance of the class. + + + + + Gets a for the specified reference. + + The id. + A for the specified reference. + + + + + Specifies undefined schema Id handling options for the . + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + Do not infer a schema Id. + + + + + Use the .NET type name as the schema Id. + + + + + Use the assembly qualified .NET type name as the schema Id. + + + + + + Returns detailed information related to the . + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets the associated with the validation error. + + The JsonSchemaException associated with the validation error. + + + + Gets the path of the JSON location where the validation error occurred. + + The path of the JSON location where the validation error occurred. + + + + Gets the text description corresponding to the validation error. + + The text description. + + + + + Represents the callback method that will handle JSON schema validation events and the . + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + + An in-memory representation of a JSON Schema. + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets or sets the id. + + + + + Gets or sets the title. + + + + + Gets or sets whether the object is required. + + + + + Gets or sets whether the object is read only. + + + + + Gets or sets whether the object is visible to users. + + + + + Gets or sets whether the object is transient. + + + + + Gets or sets the description of the object. + + + + + Gets or sets the types of values allowed by the object. + + The type. + + + + Gets or sets the pattern. + + The pattern. + + + + Gets or sets the minimum length. + + The minimum length. + + + + Gets or sets the maximum length. + + The maximum length. + + + + Gets or sets a number that the value should be divisble by. + + A number that the value should be divisble by. + + + + Gets or sets the minimum. + + The minimum. + + + + Gets or sets the maximum. + + The maximum. + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. + + A flag indicating whether the value can not equal the number defined by the "minimum" attribute. + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. + + A flag indicating whether the value can not equal the number defined by the "maximum" attribute. + + + + Gets or sets the minimum number of items. + + The minimum number of items. + + + + Gets or sets the maximum number of items. + + The maximum number of items. + + + + Gets or sets the of items. + + The of items. + + + + Gets or sets a value indicating whether items in an array are validated using the instance at their array position from . + + + true if items are validated using their array position; otherwise, false. + + + + + Gets or sets the of additional items. + + The of additional items. + + + + Gets or sets a value indicating whether additional items are allowed. + + + true if additional items are allowed; otherwise, false. + + + + + Gets or sets whether the array items must be unique. + + + + + Gets or sets the of properties. + + The of properties. + + + + Gets or sets the of additional properties. + + The of additional properties. + + + + Gets or sets the pattern properties. + + The pattern properties. + + + + Gets or sets a value indicating whether additional properties are allowed. + + + true if additional properties are allowed; otherwise, false. + + + + + Gets or sets the required property if this property is present. + + The required property if this property is present. + + + + Gets or sets the a collection of valid enum values allowed. + + A collection of valid enum values allowed. + + + + Gets or sets disallowed types. + + The disallow types. + + + + Gets or sets the default value. + + The default value. + + + + Gets or sets the collection of that this schema extends. + + The collection of that this schema extends. + + + + Gets or sets the format. + + The format. + + + + Initializes a new instance of the class. + + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The object representing the JSON Schema. + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The to use when resolving schema references. + The object representing the JSON Schema. + + + + Load a from a string that contains schema JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Parses the specified json. + + The json. + The resolver. + A populated from the string that contains JSON. + + + + Writes this schema to a . + + A into which this method will write. + + + + Writes this schema to a using the specified . + + A into which this method will write. + The resolver used. + + + + Returns a that represents the current . + + + A that represents the current . + + + + + + Generates a from a specified . + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets or sets how undefined schemas are handled by the serializer. + + + + + Gets or sets the contract resolver. + + The contract resolver. + + + + Generate a from the specified type. + + The type to generate a from. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + + The value types allowed by the . + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + No type specified. + + + + + String type. + + + + + Float type. + + + + + Integer type. + + + + + Boolean type. + + + + + Object type. + + + + + Array type. + + + + + Null type. + + + + + Any type. + + + + + Specifies missing member handling options for the . + + + + + Ignore a missing member and do not attempt to deserialize it. + + + + + Throw a when a missing member is encountered during deserialization. + + + + + Specifies null value handling options for the . + + + + + + + + + Include null values when serializing and deserializing objects. + + + + + Ignore null values when serializing and deserializing objects. + + + + + Specifies reference loop handling options for the . + + + + + Throw a when a loop is encountered. + + + + + Ignore loop references and do not serialize. + + + + + Serialize loop references. + + + + + Specifies type name handling options for the . + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than TypeNameHandling.None. + + + + + Do not include the .NET type name when serializing types. + + + + + Include the .NET type name when serializing into a JSON object structure. + + + + + Include the .NET type name when serializing into a JSON array structure. + + + + + Always include the .NET type name when serializing. + + + + + Include the .NET type name when the type of the object being serialized is not the same as its declared type. + + + + + Specifies the type of JSON token. + + + + + This is returned by the if a method has not been called. + + + + + An object start token. + + + + + An array start token. + + + + + A constructor start token. + + + + + An object property name. + + + + + A comment. + + + + + Raw JSON. + + + + + An integer. + + + + + A float. + + + + + A string. + + + + + A boolean. + + + + + A null token. + + + + + An undefined token. + + + + + An object end token. + + + + + An array end token. + + + + + A constructor end token. + + + + + A Date. + + + + + Byte data. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the writer is closed. + + + true to close the underlying stream or when + the writer is closed; otherwise false. The default is true. + + + + + Gets the top. + + The top. + + + + Gets the state of the writer. + + + + + Gets the path of the writer. + + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling when writing JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written to JSON text. + + + + + Get or set how and values are formatting when writing JSON text. + + + + + Gets or sets the culture used when writing JSON. Defaults to . + + + + + Creates an instance of the JsonWriter class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a JSON object. + + + + + Writes the end of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the end of an array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end constructor. + + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + + + + Writes the end of the current JSON object or array. + + + + + Writes the current token and its children. + + The to read the token from. + + + + Writes the current token. + + The to read the token from. + A flag indicating whether the current token's children should be written. + + + + Writes the token and its value. + + The to write. + + The value to write. + A value is only required for tokens that have an associated value, e.g. the property name for . + A null value can be passed to the method for token's that don't have a value, e.g. . + + + + Writes the token. + + The to write. + + + + Writes the specified end token. + + The end token to write. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON without changing the writer's state. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Sets the state of the JsonWriter, + + The JsonToken being written. + The value being written. + + + + Specifies the state of the . + + + + + An exception has been thrown, which has left the in an invalid state. + You may call the method to put the in the Closed state. + Any other method calls results in an being thrown. + + + + + The method has been called. + + + + + An object is being written. + + + + + A array is being written. + + + + + A constructor is being written. + + + + + A property is being written. + + + + + A write method has not been called. + + + + diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/Npgsql.dll b/migrate_data/acc_pgsqlTest/bin/Debug/Npgsql.dll new file mode 100644 index 0000000..711ba0d Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/Npgsql.dll differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/Npgsql.xml b/migrate_data/acc_pgsqlTest/bin/Debug/Npgsql.xml new file mode 100644 index 0000000..4f2917c --- /dev/null +++ b/migrate_data/acc_pgsqlTest/bin/Debug/Npgsql.xml @@ -0,0 +1,6536 @@ + + + + Npgsql + + + + + Handles serialisation of .NET array or IEnumeration to pg format. + Arrays of arrays, enumerations of enumerations, arrays of enumerations etc. + are treated as multi-dimensional arrays (in much the same manner as an array of arrays + is used to emulate multi-dimensional arrays in languages that lack native support for them). + If such an enumeration of enumerations is "jagged" (as opposed to rectangular, cuboid, + hypercuboid, hyperhypercuboid, etc) then this class will "correctly" serialise it, but pg + will raise an error as it doesn't allow jagged arrays. + + + + + Create an ArrayNativeToBackendTypeConverter with the element converter passed + + The that would be used to serialise the element type. + + + + Serialise the enumeration or array. + + + + + Convert a System.Array to PG binary format. + Write the array header and prepare to write array data to the stream. + + + + + Append all array data to the binary stream. + + + + + Handles parsing of pg arrays into .NET arrays. + + + + + Takes a string representation of a pg 1-dimensional array + (or a 1-dimensional row within an n-dimensional array) + and allows enumeration of the string represenations of each items. + + + + + Takes a string representation of a pg n-dimensional array + and allows enumeration of the string represenations of the next + lower level of rows (which in turn can be taken as (n-1)-dimensional arrays. + + + + + Takes an ArrayList which may be an ArrayList of ArrayLists, an ArrayList of ArrayLists of ArrayLists + and so on and enumerates the items that aren't ArrayLists (the leaf nodes if we think of the ArrayList + passed as a tree). Simply uses the ArrayLists' own IEnumerators to get that of the next, + pushing them onto a stack until we hit something that isn't an ArrayList. + ArrayList to enumerate + IEnumerable + + + + + Create a new ArrayBackendToNativeTypeConverter + + for the element type. + + + + Creates an array from pg text representation. + + + + + Creates an array list from pg represenation of an array. + Multidimensional arrays are treated as ArrayLists of ArrayLists + + + + + Creates an n-dimensional array from an ArrayList of ArrayLists or + a 1-dimensional array from something else. + + to convert + Type of the elements in the list + produced. + + + + Creates an n-dimensional System.Array from PG binary representation. + This function reads the array header and sets up an n-dimensional System.Array object to hold its data. + PopulateArrayFromBinaryArray() is then called to carry out array population. + + + + + Recursively populates an array from PB binary data representation. + + + + + Takes an array of ints and treats them like the limits of a set of counters. + Retains a matching set of ints that is set to all zeros on the first ++ + On a ++ it increments the "right-most" int. If that int reaches it's + limit it is set to zero and the one before it is incremented, and so on. + + Making this a more general purpose class is pretty straight-forward, but we'll just put what we need here. + + + + + Implements a bit string; a collection of zero or more bits which can each be 1 or 0. + BitString's behave as a list of bools, though like most strings and unlike most collections the position + tends to be of as much significance as the value. + BitStrings are often used as masks, and are commonly cast to and from other values. + + + + + Represents the empty string. + + + + + Create a BitString from an enumeration of boolean values. The BitString will contain + those booleans in the order they came in. + + The boolean values. + + + + Creates a BitString filled with a given number of true or false values. + + The value to fill the string with. + The number of bits to fill. + + + + Creats a bitstring from a string. + The string to copy from. + + + + + + Creates a single-bit element from a boolean value. + + The bool value which determines whether + the bit is 1 or 0. + + + + Creates a bitstring from an unsigned integer value. The string will be the shortest required to + contain the integer (e.g. 1 bit for 0 or 1, 2 for 2 or 3, 3 for 4-7, and so on). + + The integer. + This method is not CLS Compliant, and may not be available to some languages. + + + + Creates a bitstring from an integer value. The string will be the shortest required to + contain the integer (e.g. 1 bit for 0 or 1, 2 for 2 or 3, 3 for 4-7, and so on). + + The integer. + + + + Finds the first instance of a given value + + The value - whether true or false - to search for. + The index of the value found, or -1 if none are present. + + + + True if there is at least one bit with the value looked for. + + The value - true or false - to detect. + True if at least one bit was the same as item, false otherwise. + + + + Copies the bitstring to an array of bools. + + The boolean array to copy to. + The index in the array to start copying from. + + + + Returns an enumerator that enumerates through the string. + + The enumerator. + + + + Creats a bitstring by concatenating another onto this one. + + The string to append to this one. + The combined strings. + + + + Returns a substring of this string. + + The position to start from, must be between 0 and the length of the string. + The length of the string to return, must be greater than zero, and may not be + so large that the start + length exceeds the bounds of this instance. + The Bitstring identified + + + + Returns a substring of this string. + + The position to start from, must be between 0 and the length of the string, + the rest of the string is returned. + The Bitstring identified + + + + A logical and between this string and another. The two strings must be the same length. + + Another BitString to AND with this one. + A bitstring with 1 where both BitStrings had 1 and 0 otherwise. + + + + A logical or between this string and another. The two strings must be the same length. + + Another BitString to OR with this one. + A bitstring with 1 where either BitString had 1 and 0 otherwise. + + + + A logical xor between this string and another. The two strings must be the same length. + + Another BitString to XOR with this one. + A bitstring with 1 where one BitStrings and the other had 0, + and 0 where they both had 1 or both had 0. + + + + A bitstring that is the logical inverse of this one. + + A bitstring of the same length as this with 1 where this has 0 and vice-versa. + + + + Shifts the string operand bits to the left, filling with zeros to produce a + string of the same length. + + The number of bits to shift to the left. + A left-shifted bitstring. + The behaviour of LShift is closer to what one would expect from dealing + with PostgreSQL bit-strings than in using the same operations on integers in .NET + In particular, negative operands result in a right-shift, and operands greater than + the length of the string will shift it entirely, resulting in a zero-filled string. + + + + + Shifts the string operand bits to the right, filling with zeros to produce a + string of the same length. + + The number of bits to shift to the right. + A right-shifted bitstring. + The behaviour of RShift is closer to what one would expect from dealing + with PostgreSQL bit-strings than in using the same operations on integers in .NET + In particular, negative operands result in a left-shift, and operands greater than + the length of the string will shift it entirely, resulting in a zero-filled string. It also performs + a logical shift, rather than an arithmetic shift, so it always sets the vacated bit positions to zero + (like PostgreSQL and like .NET for unsigned integers but not for signed integers). + + + + + Returns true if the this string is identical to the argument passed. + + + + + Compares two strings. Strings are compared as strings, so while 0 being less than 1 will + mean a comparison between two strings of the same size is the same as treating them as numbers, + in the case of two strings of differing lengths the comparison starts at the right-most (most significant) + bit, and if all bits of the shorter string are exhausted without finding a comparison, then the larger + string is deemed to be greater than the shorter (0010 is greater than 0001 but less than 00100). + + Another string to compare with this one. + A value if the two strings are identical, an integer less + than zero if this is less than the argument, and an integer greater + than zero otherwise. + + + + Compares the string with another object. + + The object to compare with. + If the object is null then this string is considered greater. If the object is another BitString + then they are compared as in the explicit comparison for BitStrings + in any other case a is thrown. + + + + Compares this BitString with an object for equality. + + + + + Returns a code for use in hashing operations. + + + + + Returns a string representation of the BitString. + + + A string which can contain a letter and optionally a number which sets a minimum size for the string + returned. In each case using the lower-case form of the letter will result in a lower-case string + being returned. + + + B + A string of 1s and 0s. + + + X + An hexadecimal string (will result in an error unless the string's length is divisible by 4). + + + G + A string of 1s and 0s in single-quotes preceded by 'B' (Postgres bit string literal syntax). + + Y + An hexadecimal string in single-quotes preceded by 'X' (Postgres bit literal syntax, will result in an error unless the string's length is divisible by 4. + + C + The format produced by format-string "Y" if legal, otherwise that produced by format-string "G". + E + The most compact safe representation for Postgres. If single bit will be either a 0 or a 1. Otherwise if it + can be that produce by format string "Y" it will, otherwise if there are less than 9bits in length it will be that + produced by format-string "G". For longer strings that cannot be represented in hexadecimal it will be a string + representing the first part of the string in format "Y" followed by the PostgreSQL concatenation operator, followed + by the final bits in the format "G". E.g. "X'13DCE'||B'110'" + If format is empty or null, it is treated as if "B" had been passed (the default repreesentation, and that + generally used by PostgreSQL for display). + + The formatted string. + + + + Returns a string representation for the Bitstring + + A string containing '0' and '1' characters. + + + + Returns the same string as . formatProvider is ignored. + + + + + Parses a string to produce a BitString. Most formats that can be produced by + can be accepted, but hexadecimal + can be interpreted with the preceding X' to mark the following characters as + being hexadecimal rather than binary. + + + + + Performs a logical AND on the two operands. + + + + + Performs a logcial OR on the two operands. + + + + + Perofrms a logical EXCLUSIVE-OR on the two operands + + + + + Performs a logical NOT on the operand. + + + + + Concatenates the operands. + + + + + Left-shifts the string BitString. + + + + + Right-shifts the string BitString. + + + + + Compares the two operands. + + + + + Compares the two operands. + + + + + Compares the two operands. + + + + + Compares the two operands. + + + + + Compares the two operands. + + + + + Compares the two operands. + + + + + Interprets the bitstring as a series of bits in an encoded character string, + encoded according to the Encoding passed, and returns that string. + The bitstring must contain a whole number of octets(bytes) and also be + valid according to the Encoding passed. + + The to use in producing the string. + The string that was encoded in the BitString. + + + + Interprets the bitstring as a series of octets (bytes) and returns those octets. Fails + if the Bitstring does not contain a whole number of octets (its length is not evenly + divisible by 8). + + + + + Interprets the bitstring as a series of signed octets (bytes) and returns those octets. Fails + if the Bitstring does not contain a whole number of octets (its length is not evenly + divisible by 8). + This method is not CLS-Compliant and may not be available to languages that cannot + handle signed bytes. + + + + + Interprets the bitstring as a series of unsigned 16-bit integers and returns those integers. + Fails if the Bitstring's length is not evenly divisible by 16. + This method is not CLS-Compliant and may not be available to languages that cannot + handle unsigned integers. + + + + + Interprets the bitstring as a series of 16-bit integers and returns those integers. + Fails if the Bitstring's length is not evenly divisible by 16. + + + + + Interprets the bitstring as a series of unsigned 32-bit integers and returns those integers. + Fails if the Bitstring's length is not evenly divisible by 32. + This method is not CLS-Compliant and may not be available to languages that cannot + handle unsigned integers. + + + + + Interprets the bitstring as a series of signed 32-bit integers and returns those integers. + Fails if the Bitstring's length is not evenly divisible by 32. + + + + + Interprets the bitstring as a series of unsigned 64-bit integers and returns those integers. + Fails if the Bitstring's length is not evenly divisible by 64. + This method is not CLS-Compliant and may not be available to languages that cannot + handle unsigned integers. + + + + + Interprets the bitstring as a series of signed 64-bit integers and returns those integers. + Fails if the Bitstring's length is not evenly divisible by 64. + + + + + The length of the string. + + + + + Retrieves the value of the bit at the given index. + + + + + Represents the PostgreSQL interval datatype. + PostgreSQL differs from .NET in how it's interval type doesn't assume 24 hours in a day + (to deal with 23- and 25-hour days caused by daylight savings adjustments) and has a concept + of months that doesn't exist in .NET's class. (Neither datatype + has any concessions for leap-seconds). + For most uses just casting to and from TimeSpan will work correctly — in particular, + the results of subtracting one or the PostgreSQL date, time and + timestamp types from another should be the same whether you do so in .NET or PostgreSQL — + but if the handling of days and months in PostgreSQL is important to your application then you + should use this class instead of . + If you don't know whether these differences are important to your application, they + probably arent! Just use and do not use this class directly ☺ + To avoid forcing unnecessary provider-specific concerns on users who need not be concerned + with them a call to on a field containing an + value will return a rather than an + . If you need the extra functionality of + then use . + + + + + + + + + + Represents the number of ticks (100ns periods) in one microsecond. This field is constant. + + + + + Represents the number of ticks (100ns periods) in one millisecond. This field is constant. + + + + + Represents the number of ticks (100ns periods) in one second. This field is constant. + + + + + Represents the number of ticks (100ns periods) in one minute. This field is constant. + + + + + Represents the number of ticks (100ns periods) in one hour. This field is constant. + + + + + Represents the number of ticks (100ns periods) in one day. This field is constant. + + + + + Represents the number of hours in one day (assuming no daylight savings adjustments). This field is constant. + + + + + Represents the number of days assumed in one month if month justification or unjustifcation is performed. + This is set to 30 for consistency with PostgreSQL. Note that this is means that month adjustments cause + a year to be taken as 30 × 12 = 360 rather than 356/366 days. + + + + + Represents the number of ticks (100ns periods) in one day, assuming 30 days per month. + + + + + Represents the number of months in a year. This field is constant. + + + + + Represents the maximum . This field is read-only. + + + + + Represents the minimum . This field is read-only. + + + + + Represents the zero . This field is read-only. + + + + + Initializes a new to the specified number of ticks. + + A time period expressed in 100ns units. + + + + Initializes a new to hold the same time as a + + A time period expressed in a + + + + Initializes a new to the specified number of months, days + & ticks. + + Number of months. + Number of days. + Number of 100ns units. + + + + Initializes a new to the specified number of + days, hours, minutes & seconds. + + Number of days. + Number of hours. + Number of minutes. + Number of seconds. + + + + Initializes a new to the specified number of + days, hours, minutes, seconds & milliseconds. + + Number of days. + Number of hours. + Number of minutes. + Number of seconds. + Number of milliseconds. + + + + Initializes a new to the specified number of + months, days, hours, minutes, seconds & milliseconds. + + Number of months. + Number of days. + Number of hours. + Number of minutes. + Number of seconds. + Number of milliseconds. + + + + Initializes a new to the specified number of + years, months, days, hours, minutes, seconds & milliseconds. + Years are calculated exactly equivalent to 12 months. + + Number of years. + Number of months. + Number of days. + Number of hours. + Number of minutes. + Number of seconds. + Number of milliseconds. + + + + Creates an from a number of ticks. + + The number of ticks (100ns units) in the interval. + A d with the given number of ticks. + + + + Creates an from a number of microseconds. + + The number of microseconds in the interval. + A d with the given number of microseconds. + + + + Creates an from a number of milliseconds. + + The number of milliseconds in the interval. + A d with the given number of milliseconds. + + + + Creates an from a number of seconds. + + The number of seconds in the interval. + A d with the given number of seconds. + + + + Creates an from a number of minutes. + + The number of minutes in the interval. + A d with the given number of minutes. + + + + Creates an from a number of hours. + + The number of hours in the interval. + A d with the given number of hours. + + + + Creates an from a number of days. + + The number of days in the interval. + A d with the given number of days. + + + + Creates an from a number of months. + + The number of months in the interval. + A d with the given number of months. + + + + Adds another interval to this instance and returns the result. + + An to add to this instance. + An whose values are the sums of the two instances. + + + + Subtracts another interval from this instance and returns the result. + + An to subtract from this instance. + An whose values are the differences of the two instances. + + + + Returns an whose value is the negated value of this instance. + + An whose value is the negated value of this instance. + + + + This absolute value of this instance. In the case of some, but not all, components being negative, + the rules used for justification are used to determine if the instance is positive or negative. + + An whose value is the absolute value of this instance. + + + + Equivalent to PostgreSQL's justify_days function. + + An based on this one, but with any hours outside of the range [-23, 23] + converted into days. + + + + Opposite to PostgreSQL's justify_days function. + + An based on this one, but with any days converted to multiples of ±24hours. + + + + Equivalent to PostgreSQL's justify_months function. + + An based on this one, but with any days outside of the range [-30, 30] + converted into months. + + + + Opposite to PostgreSQL's justify_months function. + + An based on this one, but with any months converted to multiples of ±30days. + + + + Equivalent to PostgreSQL's justify_interval function. + + An based on this one, + but with any months converted to multiples of ±30days + and then with any days converted to multiples of ±24hours + + + + Opposite to PostgreSQL's justify_interval function. + + An based on this one, but with any months converted to multiples of ±30days and then any days converted to multiples of ±24hours; + + + + Produces a canonical NpgslInterval with 0 months and hours in the range of [-23, 23]. + + + While the fact that for many purposes, two different instances could be considered + equivalent (e.g. one with 2days, 3hours and one with 1day 27hours) there are different possible canonical forms. + + E.g. we could move all excess hours into days and all excess days into months and have the most readable form, + or we could move everything into the ticks and have the form that allows for the easiest arithmetic) the form + chosen has two important properties that make it the best choice. + First, it is closest two how + objects are most often represented. Second, it is compatible with results of many + PostgreSQL functions, particularly with age() and the results of subtracting one date, time or timestamp from + another. + + Note that the results of casting a to is + canonicalised. + + + An based on this one, but with months converted to multiples of ±30days and with any hours outside of the range [-23, 23] + converted into days. + + + + Implicit cast of a to an + + A + An eqivalent, canonical, . + + + + Implicit cast of an to a . + + A . + An equivalent . + + + + Returns true if another is exactly the same as this instance. + + An for comparison. + true if the two instances are exactly the same, + false otherwise. + + + + Returns true if another object is an , that is exactly the same as + this instance + + An for comparison. + true if the argument is an and is exactly the same + as this one, false otherwise. + + + + Compares two instances. + + The first . + The second . + 0 if the two are equal or equivalent. A value greater than zero if x is greater than y, + a value less than zero if x is less than y. + + + + A hash code suitable for uses with hashing algorithms. + + An signed integer. + + + + Compares this instance with another/ + + An to compare this with. + 0 if the instances are equal or equivalent. A value less than zero if + this instance is less than the argument. A value greater than zero if this instance + is greater than the instance. + + + + Compares this instance with another/ + + An object to compare this with. + 0 if the argument is an and the instances are equal or equivalent. + A value less than zero if the argument is an and + this instance is less than the argument. + A value greater than zero if the argument is an and this instance + is greater than the instance. + A value greater than zero if the argument is null. + The argument is not an . + + + + Parses a and returns a instance. + Designed to use the formats generally returned by PostgreSQL. + + The to parse. + An represented by the argument. + The string was null. + A value obtained from parsing the string exceeded the values allowed for the relevant component. + The string was not in a format that could be parsed to produce an . + + + + Attempt to parse a to produce an . + + The to parse. + (out) The produced, or if the parsing failed. + true if the parsing succeeded, false otherwise. + + + + Create a representation of the instance. + The format returned is of the form: + [M mon[s]] [d day[s]] [HH:mm:ss[.f[f[f[f[f[f[f[f[f]]]]]]]]]] + A zero is represented as 00:00:00 + + Ticks are 100ns, Postgress resolution is only to 1µs at most. Hence we lose 1 or more decimal + precision in storing values in the database. Despite this, this method will output that extra + digit of precision. It's forward-compatible with any future increases in resolution up to 100ns, + and also makes this ToString() more applicable to any other use-case. + + + The representation. + + + + Adds two together. + + The first to add. + The second to add. + An whose values are the sum of the arguments. + + + + Subtracts one from another. + + The to subtract the other from. + The to subtract from the other. + An whose values are the difference of the arguments + + + + Returns true if two are exactly the same. + + The first to compare. + The second to compare. + true if the two arguments are exactly the same, false otherwise. + + + + Returns false if two are exactly the same. + + The first to compare. + The second to compare. + false if the two arguments are exactly the same, true otherwise. + + + + Compares two instances to see if the first is less than the second + + The first to compare. + The second to compare. + true if the first is less than second, false otherwise. + + + + Compares two instances to see if the first is less than or equivalent to the second + + The first to compare. + The second to compare. + true if the first is less than or equivalent to second, false otherwise. + + + + Compares two instances to see if the first is greater than the second + + The first to compare. + The second to compare. + true if the first is greater than second, false otherwise. + + + + Compares two instances to see if the first is greater than or equivalent the second + + The first to compare. + The second to compare. + true if the first is greater than or equivalent to the second, false otherwise. + + + + Returns the instance. + + An . + The argument. + + + + Negates an instance. + + An . + The negation of the argument. + + + + The total number of ticks(100ns units) contained. This is the resolution of the + type. This ignores the number of days and + months held. If you want them included use first. + The resolution of the PostgreSQL + interval type is by default 1µs = 1,000 ns. It may be smaller as follows: + + + interval(0) + resolution of 1s (1 second) + + + interval(1) + resolution of 100ms = 0.1s (100 milliseconds) + + + interval(2) + resolution of 10ms = 0.01s (10 milliseconds) + + + interval(3) + resolution of 1ms = 0.001s (1 millisecond) + + + interval(4) + resolution of 100µs = 0.0001s (100 microseconds) + + + interval(5) + resolution of 10µs = 0.00001s (10 microseconds) + + + interval(6) or interval + resolution of 1µs = 0.000001s (1 microsecond) + + + As such, if the 100-nanosecond resolution is significant to an application, a PostgreSQL interval will + not suffice for those purposes. + In more frequent cases though, the resolution of the interval suffices. + will always suffice to handle the resolution of any interval value, and upon + writing to the database, will be rounded to the resolution used. + + The number of ticks in the instance. + + + + + Gets the number of whole microseconds held in the instance. + An in the range [-999999, 999999]. + + + + + Gets the number of whole milliseconds held in the instance. + An in the range [-999, 999]. + + + + + Gets the number of whole seconds held in the instance. + An in the range [-59, 59]. + + + + + Gets the number of whole minutes held in the instance. + An in the range [-59, 59]. + + + + + Gets the number of whole hours held in the instance. + Note that this can be less than -23 or greater than 23 unless + has been used to produce this instance. + + + + + Gets the number of days held in the instance. + Note that this does not pay attention to a time component with -24 or less hours or + 24 or more hours, unless has been called to produce this instance. + + + + + Gets the number of months held in the instance. + Note that this does not pay attention to a day component with -30 or less days or + 30 or more days, unless has been called to produce this instance. + + + + + Returns a representing the time component of the instance. + Note that this may have a value beyond the range ±23:59:59.9999999 unless + has been called to produce this instance. + + + + + The total number of ticks (100ns units) in the instance, assuming 24 hours in each day and + 30 days in a month. + + + + + The total number of microseconds in the instance, assuming 24 hours in each day and + 30 days in a month. + + + + + The total number of milliseconds in the instance, assuming 24 hours in each day and + 30 days in a month. + + + + + The total number of seconds in the instance, assuming 24 hours in each day and + 30 days in a month. + + + + + The total number of minutes in the instance, assuming 24 hours in each day and + 30 days in a month. + + + + + The total number of hours in the instance, assuming 24 hours in each day and + 30 days in a month. + + + + + The total number of days in the instance, assuming 24 hours in each day and + 30 days in a month. + + + + + The total number of months in the instance, assuming 24 hours in each day and + 30 days in a month. + + + + + Normalise this time; if it is 24:00:00, convert it to 00:00:00 + + This time, normalised + + + + The total number of ticks(100ns units) contained. This is the resolution of the + type. + The resolution of the PostgreSQL + interval type is by default 1µs = 1,000 ns. It may be smaller as follows: + + + time(0) + resolution of 1s (1 second) + + + time(1) + resolution of 100ms = 0.1s (100 milliseconds) + + + time(2) + resolution of 10ms = 0.01s (10 milliseconds) + + + time(3) + resolution of 1ms = 0.001s (1 millisecond) + + + time(4) + resolution of 100µs = 0.0001s (100 microseconds) + + + time(5) + resolution of 10µs = 0.00001s (10 microseconds) + + + time(6) or interval + resolution of 1µs = 0.000001s (1 microsecond) + + + As such, if the 100-nanosecond resolution is significant to an application, a PostgreSQL time will + not suffice for those purposes. + In more frequent cases though, the resolution of time suffices. + will always suffice to handle the resolution of any time value, and upon + writing to the database, will be rounded to the resolution used. + + The number of ticks in the instance. + + + + + Gets the number of whole microseconds held in the instance. + An integer in the range [0, 999999]. + + + + + Gets the number of whole milliseconds held in the instance. + An integer in the range [0, 999]. + + + + + Gets the number of whole seconds held in the instance. + An interger in the range [0, 59]. + + + + + Gets the number of whole minutes held in the instance. + An integer in the range [0, 59]. + + + + + Gets the number of whole hours held in the instance. + Note that the time 24:00:00 can be stored for roundtrip compatibility. Any calculations on such a + value will normalised it to 00:00:00. + + + + + Normalise this time; if it is 24:00:00, convert it to 00:00:00 + + This time, normalised + + + + Compares this with another . As per postgres' rules, + first the times are compared as if they were both in the same timezone. If they are equal then + then timezones are compared (+01:00 being "smaller" than -01:00). + + the to compare with. + An integer which is 0 if they are equal, < 0 if this is the smaller and > 0 if this is the larger. + + + + Gets the number of whole microseconds held in the instance. + An integer in the range [0, 999999]. + + + + + Gets the number of whole milliseconds held in the instance. + An integer in the range [0, 999]. + + + + + Gets the number of whole seconds held in the instance. + An interger in the range [0, 59]. + + + + + Gets the number of whole minutes held in the instance. + An integer in the range [0, 59]. + + + + + Gets the number of whole hours held in the instance. + Note that the time 24:00:00 can be stored for roundtrip compatibility. Any calculations on such a + value will normalised it to 00:00:00. + + + + + This class implements the Fastpath api. + + + + + This maps the functions names to their id's (possible unique just + to a connection). + + + + + Our connection. + + + + + The network stream. + + + + + Initialises the fastpath system. + + BaseConnection to attach to. + The network stream to the backend. + + + + Initialises the fastpath system. + + BaseConnection to attach to. + + + + Send a function call to the PostgreSQL backend. + + Function id. + True if the result is an integer, false for other results. + FastpathArguments to pass to fastpath. + null if no data, Integer if an integer result, or byte[] otherwise. + + + + Send a function call to the PostgreSQL backend by name. + Note: the mapping for the procedure name to function id needs to exist, + usually to an earlier call to addfunction(). + This is the prefered method to call, as function id's can/may change + between versions of the backend. + For an example of how this works, refer to NpgsqlTypes.LargeObject + + Function name. + True if the result is an integer, false for other results. + FastpathArguments to pass to fastpath. + null if no data, Integer if an integer result, or byte[] otherwise. + + + + This convenience method assumes that the return value is an Integer. + + Function name. + Function arguments. + Integer result. + + + + This convenience method assumes that the return value is an Integer. + + Function name. + Function arguments. + Array containing result + + + + This adds a function to our lookup table. + User code should use the addFunctions method, which is based upon a + query, rather than hard coding the oid. The oid for a function is not + guaranteed to remain static, even on different servers of the same + version. + + Function name. + Function id. + + + + This takes a ResultSet containing two columns. Column 1 contains the + function name, Column 2 the oid. + It reads the entire ResultSet, loading the values into the function + table. + REMEMBER to close() the resultset after calling this!! + Implementation note about function name lookups: + PostgreSQL stores the function id's and their corresponding names in + the pg_proc table. To speed things up locally, instead of querying each + function from that table when required, a Dictionary is used. Also, only + the function's required are entered into this table, keeping connection + times as fast as possible. + The org.postgresql.largeobject.LargeObject class performs a query upon it's startup, + and passes the returned ResultSet to the addFunctions() method here. + Once this has been done, the LargeObject api refers to the functions by + name. + Dont think that manually converting them to the oid's will work. Ok, + they will for now, but they can change during development (there was some + discussion about this for V7.0), so this is implemented to prevent any + unwarranted headaches in the future. + + ResultSet + + + + This returns the function id associated by its name + If addFunction() or addFunctions() have not been called for this name, + then an NpgsqlException is thrown. + + Function name to lookup. + Function ID for fastpath call. + + + + Fast Path Arg. + + + + + Type of argument, true=integer, false=byte[]. + + + + + Integer value if type=true. + + + + + Byte value if type=false; + + + + + Constructs an argument that consists of an integer value. + + Int value to set. + + + + Constructs an argument that consists of an array of bytes. + + Array to store. + + + + Constructs an argument that consists of part of a byte array. + + Source array. + offset within array. + length of data to include. + + + + Constructs an argument that consists of a String. + + String to store. + + + + This sends this argument down the network stream. + The stream sent consists of the length.int4 then the contents. + Note: This is called from Fastpath, and cannot be called from + client code. + + + + + + Report send size. + + Send size. + + + + Large Object. + + + + + Indicates a seek from the begining of a file. + + + + + Indicates a seek from the current position. + + + + + Indicates a seek from the end of a file. + + + + + This opens a large object. + If the object does not exist, then an NpgsqlException is thrown. + + FastPath API for the connection to use. + OID of the Large Object to open. + Mode of opening the large object + + + + OID getter. + + The OID of this LargeObject. + + + + This method closes the object. You must not call methods in this + object after this is called. + + + + + Reads some data from the object, and return as a byte[] array. + + Number of bytes to read. + Array containing data read. + + + + Reads some data from the object into an existing array. + + Destination array. + Offset within array. + Maximum number of bytes to read. + The number of bytes actually read. + + + + Writes an array to the object. + + Array to write. + + + + Writes some data from an array to the object. + + Destination array. + Offset within array. + Number of bytes to write. + + + + Sets the current position within the object. + This is similar to the fseek() call in the standard C library. It + allows you to have random access to the large object. + + Position within object. + Either SEEK_SET, SEEK_CUR or SEEK_END. + + + + Sets the current position within the object. + This is similar to the fseek() call in the standard C library. It + allows you to have random access to the large object. + + Position within object from begining. + + + + Report the current position within the object. + + The current position within the object. + + + + This method is inefficient, as the only way to find out the size of + the object is to seek to the end, record the current position, then + return to the original position. + A better method will be found in the future. + + The size of the large object. + + + + OID. + + + + + Large Object Manager. + + + + + This mode indicates we want to write to an object + + + + + This mode indicates we want to read an object + + + + + This mode is the default. It indicates we want read and write access to + + + + + Constructs the LargeObject API. + There should only be one LargeObjectManager per Connection. The + org.postgresql.Connection class keeps track of the various extension API's + and it's advised you use those to gain access, and not going direct. + + + + + + This opens an existing large object, based on its OID. This method + assumes that READ and WRITE access is required (the default). + + OID of large object. + LargeObject instance providing access to the object + + + + This opens an existing large object, based on its OID. + + OID of large object. + Mode of open. + + + + + This creates a large object, returning its OID. + + OID of new object. + + + + This creates a large object, returning its OID. + + Bitmask describing different attributes of the new object. + OID of new object. + + + + This deletes a large object. + + OID describing object to delete. + + + + This deletes a large object. + It is identical to the Delete() method, and is supplied as the C API uses unlink. + + OID describing object to delete. + + + + Options that control certain aspects of native to backend conversions that depend + on backend version and status. + + + + + Clone the current object. + + A new NativeToBackendTypeConverterOptions object. + + + + Clone the current object with a different OID/Name mapping. + + OID/Name mapping object to use in the new instance. + A new NativeToBackendTypeConverterOptions object. + + + + Provide event handlers to convert all native supported basic data types from their backend + text representation to a .NET object. + + + + + Convert UTF8 encoded text a string. + + + + + Byte array from bytea encoded as ASCII text, escaped or hex format. + + + + + Byte array from bytea encoded as binary. + + + + + Convert a postgresql boolean to a System.Boolean. + + + + + Convert a postgresql boolean to a System.Boolean. + + + + + Convert a postgresql bit to a System.Boolean. + + + + + Convert a postgresql datetime to a System.DateTime. + + + + + Convert a postgresql date to a System.DateTime. + + + + + Convert a postgresql time to a System.DateTime. + + + + + Convert a postgresql money to a System.Decimal. + + + + + Convert a postgresql float4 or float8 to a System.Float or System.Double respectively. + + + + + Provide event handlers to convert extended native supported data types from their backend + text representation to a .NET object. + + + + + Convert a postgresql point to a System.NpgsqlPoint. + + + + + Convert a postgresql point to a System.RectangleF. + + + + + LDeg. + + + + + Path. + + + + + Polygon. + + + + + Circle. + + + + + Inet. + + + + + MAC Address. + + + + + interval + + + + + Provide event handlers to convert the basic native supported data types from + native form to backend representation. + + + + + Convert a string to UTF8 encoded text, escaped and quoted as required. + + + + + Convert a string to UTF8 encoded text. + + + + + Binary data, escaped and quoted as required. + + + + + Binary data with possible older style octal escapes, quoted. + + + + + Binary data in the new hex format (>= 9.0), quoted. + + + + + Binary data, raw. + + + + + Convert to a postgresql boolean text format. + + + + + Convert to a postgresql boolean binary format. + + + + + Convert to a postgresql binary int2. + + + + + Convert to a postgresql binary int4. + + + + + Convert to a postgresql binary int8. + + + + + Convert to a postgresql bit. + + + + + Convert to a postgresql timestamp. + + + + + Convert to a postgresql date. + + + + + Convert to a postgresql time. + + + + + Convert to a postgres money. + + + + + Convert to a postgres double with maximum precision. + + + + + Convert a System.Float to a postgres float4. + + + + + Convert a System.Double to a postgres float8. + + + + + Provide event handlers to convert extended native supported data types from + native form to backend representation. + + + + + Point. + + + + + Box. + + + + + LSeg. + + + + + Open path. + + + + + Polygon. + + + + + Convert to a postgres MAC Address. + + + + + Circle. + + + + + Convert to a postgres inet. + + + + + Convert to a postgres interval + + + + + Delegate called to convert the given backend text data to its native representation. + + + + + Delegate called to convert the given backend binary data to its native representation. + + + + + Represents a backend data type. + This class can be called upon to convert a backend field representation to a native object. + + + + + Construct a new NpgsqlTypeInfo with the given attributes and conversion handlers. + + Type OID provided by the backend server. + Type name provided by the backend server. + NpgsqlDbType + DbType + System type to convert fields of this type to. + Data conversion handler for text encoding. + Data conversion handler for binary data. + + + + Perform a data conversion from a backend representation to + a native object. + + Data sent from the backend. + fieldValueSize + Type modifier field sent from the backend. + + + + Perform a data conversion from a backend representation to + a native object. + + Data sent from the backend. + TypeSize + Type modifier field sent from the backend. + + + + Type OID provided by the backend server. + + + + + Type name provided by the backend server. + + + + + NpgsqlDbType. + + + + + NpgsqlDbType. + + + + + Provider type to convert fields of this type to. + + + + + System type to convert fields of this type to. + + + + + Reports whether a backend binary to native decoder is available for this type. + + + + + Delegate called to convert the given native data to its backand representation. + + + + + Represents a backend data type. + This class can be called upon to convert a native object to its backend field representation, + + + + + Returns an NpgsqlNativeTypeInfo for an array where the elements are of the type + described by the NpgsqlNativeTypeInfo supplied. + + + + + Construct a new NpgsqlTypeInfo with the given attributes and conversion handlers. + + Type name provided by the backend server. + DbType + Quote + NpgsqlDbType + Data conversion handler for text backend encoding. + Data conversion handler for binary backend encoding (for extended queries). + + + + Perform a data conversion from a native object to + a backend representation. + DBNull and null values are handled differently depending if a plain query is used + When + + Native .NET object to be converted. + Specifies that the value should be formatted for the extended query syntax. + Options to guide serialization. If null, a default options set is used. + Specifies that the value should be formatted as an extended query array element. + + + + Type name provided by the backend server. + + + + + NpgsqlDbType. + + + + + DbType. + + + + + Apply quoting. + + + + + Use parameter size information. + + + + + Reports whether a native to backend binary encoder is available for this type. + + + + + Provide mapping between type OID, type name, and a NpgsqlBackendTypeInfo object that represents it. + + + + + Construct an empty mapping. + + + + + Copy constuctor. + + + + + Add the given NpgsqlBackendTypeInfo to this mapping. + + + + + Add a new NpgsqlBackendTypeInfo with the given attributes and conversion handlers to this mapping. + + Type OID provided by the backend server. + Type name provided by the backend server. + NpgsqlDbType + DbType + System type to convert fields of this type to. + Data conversion handler for text encoding. + Data conversion handler for binary data. + + + + Make a shallow copy of this type mapping. + + + + + Determine if a NpgsqlBackendTypeInfo with the given backend type OID exists in this mapping. + + + + + Determine if a NpgsqlBackendTypeInfo with the given backend type name exists in this mapping. + + + + + Get the number of type infos held. + + + + + Retrieve the NpgsqlBackendTypeInfo with the given backend type OID, or null if none found. + + + + + Retrieve the NpgsqlBackendTypeInfo with the given backend type name, or null if none found. + + + + + Provide mapping between type Type, NpgsqlDbType and a NpgsqlNativeTypeInfo object that represents it. + + + + + Add the given NpgsqlNativeTypeInfo to this mapping. + + + + + Add a new NpgsqlNativeTypeInfo with the given attributes and conversion handlers to this mapping. + + Type name provided by the backend server. + NpgsqlDbType + DbType + Quote + Data conversion handler for text backend encoding. + Data conversion handler for binary backend encoding (for extended query). + + + + Retrieve the NpgsqlNativeTypeInfo with the given NpgsqlDbType. + + + + + Retrieve the NpgsqlNativeTypeInfo with the given DbType. + + + + + Retrieve the NpgsqlNativeTypeInfo with the given Type. + + + + + Determine if a NpgsqlNativeTypeInfo with the given backend type name exists in this mapping. + + + + + Determine if a NpgsqlNativeTypeInfo with the given NpgsqlDbType exists in this mapping. + + + + + Determine if a NpgsqlNativeTypeInfo with the given Type name exists in this mapping. + + + + + Get the number of type infos held. + + + + + Represents a PostgreSQL Point type + + + + + Represents a PostgreSQL Line Segment type. + + + + + Represents a PostgreSQL Path type. + + + + + Represents a PostgreSQL Polygon type. + + + + + Represents a PostgreSQL Circle type. + + + + + Represents a PostgreSQL inet type. + + + + + Represents a PostgreSQL MacAddress type. + + + + + + + The macAddr parameter must contain a string that can only consist of numbers + and upper-case letters as hexadecimal digits. (See PhysicalAddress.Parse method on MSDN) + + + + This class contains helper methods for type conversion between + the .Net type system and postgresql. + + + + + A cache of basic datatype mappings keyed by server version. This way we don't + have to load the basic type mappings for every connection. + + + + + Find a NpgsqlNativeTypeInfo in the default types map that can handle objects + of the given NpgsqlDbType. + + + + + Find a NpgsqlNativeTypeInfo in the default types map that can handle objects + of the given NpgsqlDbType. + + + + + Find a NpgsqlNativeTypeInfo in the default types map that can handle objects + of the given DbType. + + + + + Find a NpgsqlNativeTypeInfo in the default types map that can handle objects + of the given System.Type. + + + + + This method is responsible to convert the byte[] received from the backend + to the corresponding NpgsqlType. + The given TypeInfo is called upon to do the conversion. + If no TypeInfo object is provided, no conversion is performed. + + + + + This method is responsible to convert the string received from the backend + to the corresponding NpgsqlType. + The given TypeInfo is called upon to do the conversion. + If no TypeInfo object is provided, no conversion is performed. + + + + + Create the one and only native to backend type map. + This map is used when formatting native data + types to backend representations. + + + + + This method creates (or retrieves from cache) a mapping between type and OID + of all natively supported postgresql data types. + This is needed as from one version to another, this mapping can be changed and + so we avoid hardcoding them. + + NpgsqlTypeMapping containing all known data types. The mapping must be + cloned before it is modified because it is cached; changes made by one connection may + effect another connection. + + + + + Attempt to map types by issuing a query against pg_type. + This function takes a list of NpgsqlTypeInfo and attempts to resolve the OID field + of each by querying pg_type. If the mapping is found, the type info object is + updated (OID) and added to the provided NpgsqlTypeMapping object. + + NpgsqlConnector to send query through. + Mapping object to add types too. + List of types that need to have OID's mapped. + + + + Summary description for NpgsqlQuery + + + + + For classes representing messages sent from the client to the server. + + + + + Set Cache Size. The default value is 20. + + + + + Lookup cached entity. null will returned if not match. + For both get{} and set{} apply LRU rule. + + key + + + + + The globally available text encoding used for frontend/backend communication. + + + + This class represents the base class for the state pattern design pattern + implementation. + + + This class represents the base class for the state pattern design pattern + implementation. + + + + + + This method is used by the states to change the state of the context. + + + + + Call ProcessBackendResponsesEnum(), and scan and discard all results. + + + + + This method is responsible to handle all protocol messages sent from the backend. + It holds all the logic to do it. + To exchange data, it uses a Mediator object from which it reads/writes information + to handle backend requests. + + + + + + Checks for context socket availability. + Socket.Poll supports integer as microseconds parameter. + This limits the usable command timeout value + to 2,147 seconds: (2,147 x 1,000,000 less than max_int). + In order to bypass this limit, the availability of + the socket is checked in 2,147 seconds cycles + + true, if for context socket availability was checked, false otherwise. + Context. + Select mode. + + + + Called from constructor of derived class. + + + + + Finalizer for HashAlgorithm + + + + + Computes the entire hash of all the bytes in the byte array. + + + + + When overridden in a derived class, drives the hashing function. + + + + + + + + When overridden in a derived class, this pads and hashes whatever data might be left in the buffers and then returns the hash created. + + + + + When overridden in a derived class, initializes the object to prepare for hashing. + + + + + Used for stream chaining. Computes hash as data passes through it. + + The buffer from which to grab the data to be copied. + The offset into the input buffer to start reading at. + The number of bytes to be copied. + The buffer to write the copied data to. + At what point in the outputBuffer to write the data at. + + + + Used for stream chaining. Computes hash as data passes through it. Finishes off the hash. + + The buffer from which to grab the data to be copied. + The offset into the input buffer to start reading at. + The number of bytes to be copied. + + + + Get whether or not the hash can transform multiple blocks at a time. + Note: MUST be overriden if descendant can transform multiple block + on a single call! + + + + + Gets the previously computed hash. + + + + + Returns the size in bits of the hash. + + + + + Must be overriden if not 1 + + + + + Must be overriden if not 1 + + + + + Common base class for all derived MD5 implementations. + + + + + Called from constructor of derived class. + + + + + Creates the default derived class. + + + + + C# implementation of the MD5 cryptographic hash function. + + + + + Creates a new MD5CryptoServiceProvider. + + + + + Drives the hashing function. + + Byte array containing the data to hash. + Where in the input buffer to start. + Size in bytes of the data in the buffer to hash. + + + + This finalizes the hash. Takes the data from the chaining variables and returns it. + + + + + Resets the class after use. Called automatically after hashing is done. + + + + + This is the meat of the hash function. It is what processes each block one at a time. + + Byte array to process data from. + Where in the byte array to start processing. + + + + Pads and then processes the final block. + + Buffer to grab data from. + Position in buffer in bytes to get data from. + How much data in bytes in the buffer to use. + + + + Implements for version 3 of the protocol. + + + + + Reads a row, field by field, allowing a DataRow to be built appropriately. + + + + + Marker interface which identifies a class which may take possession of a stream for the duration of + it's lifetime (possibly temporarily giving that possession to another class for part of that time. + + It inherits from IDisposable, since any such class must make sure it leaves the stream in a valid state. + + The most important such class is that compiler-generated from ProcessBackendResponsesEnum. Of course + we can't make that inherit from this interface, alas. + + + + + Marker interface which identifies a class which represents part of + a response from the server. + + + + + Reads part of a field, as needed (for + and + + + + + Adds further functionality to stream that is dependant upon the type of data read. + + + + + Completes the implementation of Streamer for char data. + + + + + Completes the implementation of Streamer for byte data. + + + + + This class represents a BackEndKeyData message received + from PostgreSQL + + + + + This class represents the Bind message sent to PostgreSQL + server. + + + + + + This class represents the CancelRequest message sent to PostgreSQL + server. + + + + + + Represents a SQL statement or function (stored procedure) to execute + against a PostgreSQL database. This class cannot be inherited. + + + Represents a SQL statement or function (stored procedure) to execute + against a PostgreSQL database. This class cannot be inherited. + + + Represents a SQL statement or function (stored procedure) to execute + against a PostgreSQL database. This class cannot be inherited. + + + + + For prepared commands, captures the connection's + at the time the command was prepared. This allows us to know whether the connection was + closed since the command was prepared. + + + + + Initializes a new instance of the NpgsqlCommand class. + + + + + Initializes a new instance of the NpgsqlCommand class with the text of the query. + + The text of the query. + + + + Initializes a new instance of the NpgsqlCommand class with the text of the query and a NpgsqlConnection. + + The text of the query. + A NpgsqlConnection that represents the connection to a PostgreSQL server. + + + + Initializes a new instance of the NpgsqlCommand class with the text of the query, a NpgsqlConnection, and the NpgsqlTransaction. + + The text of the query. + A NpgsqlConnection that represents the connection to a PostgreSQL server. + The NpgsqlTransaction in which the NpgsqlCommand executes. + + + + Used to execute internal commands. + + + + + Attempts to cancel the execution of a NpgsqlCommand. + + This Method isn't implemented yet. + + + + Create a new command based on this one. + + A new NpgsqlCommand object. + + + + Create a new command based on this one. + + A new NpgsqlCommand object. + + + + Creates a new instance of an DbParameter object. + + An DbParameter object. + + + + Creates a new instance of a NpgsqlParameter object. + + A NpgsqlParameter object. + + + + Releases the resources used by the NpgsqlCommand. + + + + + Internal query shortcut for use in cases where the number + of affected rows is of no interest. + + + + + Special adaptation of ExecuteBlind() that sets statement_timeout. + This exists to prevent Connector.SetBackendCommandTimeout() from calling Command.ExecuteBlind(), + which will cause an endless recursive loop. + + + Timeout in seconds. + + + + Executes a SQL statement against the connection and returns the number of rows affected. + + The number of rows affected if known; -1 otherwise. + + + + Sends the CommandText to + the Connection and builds a + NpgsqlDataReader + using one of the CommandBehavior values. + + One of the CommandBehavior values. + A NpgsqlDataReader object. + + + + Sends the CommandText to + the Connection and builds a + NpgsqlDataReader. + + A NpgsqlDataReader object. + + + + Sends the CommandText to + the Connection and builds a + NpgsqlDataReader + using one of the CommandBehavior values. + + One of the CommandBehavior values. + A NpgsqlDataReader object. + Currently the CommandBehavior parameter is ignored. + + + + This method binds the parameters from parameters collection to the bind + message. + + + + + Executes the query, and returns the first column of the first row + in the result set returned by the query. Extra columns or rows are ignored. + + The first column of the first row in the result set, + or a null reference if the result set is empty. + + + + Creates a prepared version of the command on a PostgreSQL server. + + + + + This method checks the connection state to see if the connection + is set or it is open. If one of this conditions is not met, throws + an InvalidOperationException + + + + + This method substitutes the Parameters, if exist, in the command + to their actual values. + The parameter name format is :ParameterName. + + A version of CommandText with the Parameters inserted. + + + + Process this.commandText, trimming each distinct command and substituting paramater + tokens. + + + UTF8 encoded command ready to be sent to the backend. + + + + Append a region of a source command text to an output command, performing parameter token + substitutions. + + Stream to which to append output. + Command text. + + + false if the query has multiple statements which are not allowed + + + + Gets or sets the SQL statement or function (stored procedure) to execute at the data source. + + The Transact-SQL statement or stored procedure to execute. The default is an empty string. + + + + Gets or sets the wait time before terminating the attempt + to execute a command and generating an error. + + The time (in seconds) to wait for the command to execute. + The default is 20 seconds. + + + + Gets or sets a value indicating how the + CommandText property is to be interpreted. + + One of the CommandType values. The default is CommandType.Text. + + + + DB connection. + + + + + Gets or sets the NpgsqlConnection + used by this instance of the NpgsqlCommand. + + The connection to a data source. The default value is a null reference. + + + + DB parameter collection. + + + + + Gets the NpgsqlParameterCollection. + + The parameters of the SQL statement or function (stored procedure). The default is an empty collection. + + + + DB transaction. + + + + + Gets or sets the NpgsqlTransaction + within which the NpgsqlCommand executes. + + The NpgsqlTransaction. + The default value is a null reference. + + + + Gets or sets how command results are applied to the DataRow + when used by the Update + method of the DbDataAdapter. + + One of the UpdateRowSource values. + + + + Returns oid of inserted row. This is only updated when using executenonQuery and when command inserts just a single row. If table is created without oids, this will always be 0. + + + + + Returns whether this query will execute as a prepared (compiled) query. + + + + + Design time visible. + + + + + This class is responsible to create database commands for automatic insert, update and delete operations. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The adapter. + + + + + This method is reponsible to derive the command parameter list with values obtained from function definition. + It clears the Parameters collection of command. Also, if there is any parameter type which is not supported by Npgsql, an InvalidOperationException will be thrown. + Parameters name will be parameter1, parameter2, ... + + NpgsqlCommand whose function parameters will be obtained. + + + + Gets the automatically generated object required + to perform insertions at the data source. + + + The automatically generated object required to perform insertions. + + + + + Gets the automatically generated object required to perform insertions + at the data source, optionally using columns for parameter names. + + + If true, generate parameter names matching column names, if possible. + If false, generate @p1, @p2, and so on. + + + The automatically generated object required to perform insertions. + + + + + Gets the automatically generated System.Data.Common.DbCommand object required + to perform updates at the data source. + + + The automatically generated System.Data.Common.DbCommand object required to perform updates. + + + + + Gets the automatically generated object required to perform updates + at the data source, optionally using columns for parameter names. + + + If true, generate parameter names matching column names, if possible. + If false, generate @p1, @p2, and so on. + + + The automatically generated object required to perform updates. + + + + + Gets the automatically generated System.Data.Common.DbCommand object required + to perform deletions at the data source. + + + The automatically generated System.Data.Common.DbCommand object required to perform deletions. + + + + + Gets the automatically generated object required to perform deletions + at the data source, optionally using columns for parameter names. + + + If true, generate parameter names matching column names, if possible. + If false, generate @p1, @p2, and so on. + + + The automatically generated object required to perform deletions. + + + + + Applies the parameter information. + + The parameter. + The row. + Type of the statement. + if set to true [where clause]. + + + + Returns the name of the specified parameter in the format of @p#. + + The number to be included as part of the parameter's name.. + + The name of the parameter with the specified number appended as part of the parameter name. + + + + + Returns the full parameter name, given the partial parameter name. + + The partial name of the parameter. + + The full parameter name corresponding to the partial parameter name requested. + + + + + Returns the placeholder for the parameter in the associated SQL statement. + + The number to be included as part of the parameter's name. + + The name of the parameter with the specified number appended. + + + + + Registers the to handle the event for a . + + The to be used for the update. + + + + Adds an event handler for the event. + + The sender + A instance containing information about the event. + + + + Given an unquoted identifier in the correct catalog case, returns the correct quoted form of that identifier, including properly escaping any embedded quotes in the identifier. + + The original unquoted identifier. + + The quoted version of the identifier. Embedded quotes within the identifier are properly escaped. + + + + + Unquoted identifier parameter cannot be null + + + + Given a quoted identifier, returns the correct unquoted form of that identifier, including properly un-escaping any embedded quotes in the identifier. + + The identifier that will have its embedded quotes removed. + + The unquoted identifier, with embedded quotes properly un-escaped. + + + + + Quoted identifier parameter cannot be null + + + + Gets or sets the beginning character or characters to use when specifying database objects (for example, tables or columns) whose names contain characters such as spaces or reserved tokens. + + + The beginning character or characters to use. The default is an empty string. + + + + + + + + Gets or sets the ending character or characters to use when specifying database objects (for example, tables or columns) whose names contain characters such as spaces or reserved tokens. + + + The ending character or characters to use. The default is an empty string. + + + + + + + + Represents the method that handles the Notice events. + + The source of the event. + A NpgsqlNoticeEventArgs that contains the event data. + + + + Represents the method that handles the Notification events. + + The source of the event. + A NpgsqlNotificationEventArgs that contains the event data. + + + + This class represents a connection to a + PostgreSQL server. + + + + + Initializes a new instance of the + NpgsqlConnection class. + + + + + Initializes a new instance of the + NpgsqlConnection class + and sets the ConnectionString. + + The connection used to open the PostgreSQL database. + + + + Initializes a new instance of the + NpgsqlConnection class + and sets the ConnectionString. + + The connection used to open the PostgreSQL database. + + + + Begins a database transaction with the specified isolation level. + + The isolation level under which the transaction should run. + An DbTransaction + object representing the new transaction. + + Currently the IsolationLevel ReadCommitted and Serializable are supported by the PostgreSQL backend. + There's no support for nested transactions. + + + + + Begins a database transaction. + + A NpgsqlTransaction + object representing the new transaction. + + Currently there's no support for nested transactions. + + + + + Begins a database transaction with the specified isolation level. + + The isolation level under which the transaction should run. + A NpgsqlTransaction + object representing the new transaction. + + Currently the IsolationLevel ReadCommitted and Serializable are supported by the PostgreSQL backend. + There's no support for nested transactions. + + + + + Opens a database connection with the property settings specified by the + ConnectionString. + + + + + This method changes the current database by disconnecting from the actual + database and connecting to the specified. + + The name of the database to use in place of the current database. + + + + Releases the connection to the database. If the connection is pooled, it will be + made available for re-use. If it is non-pooled, the actual connection will be shutdown. + + + + + When a connection is closed within an enclosing TransactionScope and the transaction + hasn't been promoted, we defer the actual closing until the scope ends. + + + + + Creates and returns a DbCommand + object associated with the IDbConnection. + + A DbCommand object. + + + + Creates and returns a NpgsqlCommand + object associated with the NpgsqlConnection. + + A NpgsqlCommand object. + + + + Releases all resources used by the + NpgsqlConnection. + + true when called from Dispose(); + false when being called from the finalizer. + + + + Create a new connection based on this one. + + A new NpgsqlConnection object. + + + + Create a new connection based on this one. + + A new NpgsqlConnection object. + + + + Returns a copy of the NpgsqlConnectionStringBuilder that contains the parsed connection string values. + + + + + Default SSL CertificateSelectionCallback implementation. + + + + + Default SSL CertificateValidationCallback implementation. + + + + + Default SSL PrivateKeySelectionCallback implementation. + + + + + Default SSL ProvideClientCertificatesCallback implementation. + + + + + Default SSL ValidateRemoteCertificateCallback implementation. + + + + + Write each key/value pair in the connection string to the log. + + + + + Sets the `settings` ConnectionStringBuilder based on the given `connectionString` + + The connection string to load the builder from + + + + Sets the `settings` ConnectionStringBuilder based on the given `connectionString` + + The connection string to load the builder from + + + + Refresh the cached _connectionString whenever the builder settings change + + + + + Returns the supported collections + + + + + Returns the schema collection specified by the collection name. + + The collection name. + The collection specified. + + + + Returns the schema collection specified by the collection name filtered by the restrictions. + + The collection name. + + The restriction values to filter the results. A description of the restrictions is contained + in the Restrictions collection. + + The collection specified. + + + + Clear connection pool. + + + + + Clear all connection pools. + + + + + Enlist transation. + + + + + + Occurs on NoticeResponses from the PostgreSQL backend. + + + + + Occurs on NotificationResponses from the PostgreSQL backend. + + + + + Called to provide client certificates for SSL handshake. + + + + + Mono.Security.Protocol.Tls.CertificateSelectionCallback delegate. + + + + + Mono.Security.Protocol.Tls.CertificateValidationCallback delegate. + + + + + Mono.Security.Protocol.Tls.PrivateKeySelectionCallback delegate. + + + + + Called to validate server's certificate during SSL handshake + + + + + A counter that gets incremented every time the connection is (re-)opened. + This allows us to identify an "instance" of connection, which is useful since + some resources are released when a connection is closed (e.g. prepared statements). + + + + + Gets or sets the string used to connect to a PostgreSQL database. + Valid values are: +
    +
  • + Server: Address/Name of Postgresql Server; +
  • +
  • + Port: Port to connect to; +
  • +
  • + Protocol: Protocol version to use, instead of automatic; Integer 2 or 3; +
  • +
  • + Database: Database name. Defaults to user name if not specified; +
  • +
  • + User Id: User name; +
  • +
  • + Password: Password for clear text authentication; +
  • +
  • + SSL: True or False. Controls whether to attempt a secure connection. Default = False; +
  • +
  • + Pooling: True or False. Controls whether connection pooling is used. Default = True; +
  • +
  • + MinPoolSize: Min size of connection pool; +
  • +
  • + MaxPoolSize: Max size of connection pool; +
  • +
  • + Timeout: Time to wait for connection open in seconds. Default is 15. +
  • +
  • + CommandTimeout: Time to wait for command to finish execution before throw an exception. In seconds. Default is 20. +
  • +
  • + Sslmode: Mode for ssl connection control. Can be Prefer, Require, Allow or Disable. Default is Disable. Check user manual for explanation of values. +
  • +
  • + ConnectionLifeTime: Time to wait before closing unused connections in the pool in seconds. Default is 15. +
  • +
  • + SyncNotification: Specifies if Npgsql should use synchronous notifications. +
  • +
  • + SearchPath: Changes search path to specified and public schemas. +
  • +
+
+ The connection string that includes the server name, + the database name, and other parameters needed to establish + the initial connection. The default value is an empty string. + +
+ + + Backend server host name. + + + + + Backend server port. + + + + + If true, the connection will attempt to use SSL. + + + + + Gets the time to wait while trying to establish a connection + before terminating the attempt and generating an error. + + The time (in seconds) to wait for a connection to open. The default value is 15 seconds. + + + + Gets the time to wait while trying to execute a command + before terminating the attempt and generating an error. + + The time (in seconds) to wait for a command to complete. The default value is 20 seconds. + + + + Gets the time to wait before closing unused connections in the pool if the count + of all connections exeeds MinPoolSize. + + + If connection pool contains unused connections for ConnectionLifeTime seconds, + the half of them will be closed. If there will be unused connections in a second + later then again the half of them will be closed and so on. + This strategy provide smooth change of connection count in the pool. + + The time (in seconds) to wait. The default value is 15 seconds. + + + + Gets the name of the current database or the database to be used after a connection is opened. + + The name of the current database or the name of the database to be + used after a connection is opened. The default value is the empty string. + + + + Whether datareaders are loaded in their entirety (for compatibility with earlier code). + + + + + Gets the database server name. + + + + + Gets flag indicating if we are using Synchronous notification or not. + The default value is false. + + + + + Gets the current state of the connection. + + A bitwise combination of the ConnectionState values. The default is Closed. + + + + Gets whether the current state of the connection is Open or Closed + + ConnectionState.Open or ConnectionState.Closed + + + + Compatibility version. + + + + + Version of the PostgreSQL backend. + This can only be called when there is an active connection. + + + + + PostgreSQL server version. + + + + + Protocol version in use. + This can only be called when there is an active connection. + Always retuna Version3 + + + + + Whether the backend is an AWS Redshift instance + + + + + Process id of backend server. + This can only be called when there is an active connection. + + + + + Report whether the backend is expecting standard conformant strings. + In version 8.1, Postgres began reporting this value (false), but did not actually support standard conformant strings. + In version 8.2, Postgres began supporting standard conformant strings, but defaulted this flag to false. + As of version 9.1, this flag defaults to true. + + + + + Report whether the backend understands the string literal E prefix (>= 8.1). + + + + + Report whether the backend understands the hex byte format (>= 9.0). + + + + + The connector object connected to the backend. + + + + + Gets the NpgsqlConnectionStringBuilder containing the parsed connection string values. + + + + + User name. + + + + + Use extended types. + + + + + Password. + + + + + Determine if connection pooling will be used for this connection. + + + + + DB provider factory. + + + + + Return an exact copy of this NpgsqlConnectionString. + + + + + No integrated security if we're on mono and .NET 4.5 because of ClaimsIdentity, + see https://github.com/npgsql/Npgsql/issues/133 + + + + + This function will set value for known key, both private member and base[key]. + + + + + value, coerced as needed to the stored type. + + + + The function will modify private member only, not base[key]. + + + + value, coerced as needed to the stored type. + + + + The function will access private member only, not base[key]. + + + value. + + + + Clear the member and assign them to the default value. + + + + + Gets or sets the backend server host name. + + + + + Gets or sets the backend server port. + + + + + Gets or sets the name of the database to be used after a connection is opened. + + The name of the database to be + used after a connection is opened. + + + + Gets or sets the login user name. + + + + + Gets or sets the login password as a UTF8 encoded byte array. + + + + + Sets the login password as a string. + + + + + Gets or sets the krbsrvname. + + + + + Gets or sets a value indicating whether to attempt to use SSL. + + + + + Gets or sets a value indicating whether to attempt to use SSL. + + + + + Gets or sets the time to wait while trying to establish a connection + before terminating the attempt and generating an error. + + The time (in seconds) to wait for a connection to open. The default value is 15 seconds. + + + + Gets or sets the schema search path. + + + + + Gets or sets a value indicating whether connection pooling should be used. + + + + + Gets or sets the time to wait before closing unused connections in the pool if the count + of all connections exeeds MinPoolSize. + + + If connection pool contains unused connections for ConnectionLifeTime seconds, + the half of them will be closed. If there will be unused connections in a second + later then again the half of them will be closed and so on. + This strategy provide smooth change of connection count in the pool. + + The time (in seconds) to wait. The default value is 15 seconds. + + + + Gets or sets the minimum connection pool size. + + + + + Gets or sets the maximum connection pool size. + + + + + Gets or sets a value indicating whether to listen for notifications and report them between command activity. + + + + + Gets the time to wait while trying to execute a command + before terminating the attempt and generating an error. + + The time (in seconds) to wait for a command to complete. The default value is 20 seconds. + + + + Gets or sets a value indicating whether datareaders are loaded in their entirety (for compatibility with earlier code). + + + + + Compatibilty version. When possible, behaviour caused by breaking changes will be preserved + if this version is less than that where the breaking change was introduced. + + + + + Gets or sets the ootional application name parameter to be sent to the backend during connection initiation. + + + + + Gets or sets a value indicating whether to silently Prepare() all commands before execution. + + + + + Gets or sets the specified backend communication protocol version. + + + + + Gets the backend encoding. Always returns "UTF8". + + + + + Case insensative accessor for indivual connection string values. + + + + + Set both ImplicitDefault and ExplicitDefault to the 's default value. + + + + + + + + Set ImplicitDefault to the default value of 's type, + and ExplicitDefault to . + + + + + + + + Represents the method that allows the application to provide a certificate collection to be used for SSL clien authentication + + A X509CertificateCollection to be filled with one or more client certificates. + + + + Represents the method that is called to validate the certificate provided by the server during an SSL handshake + + The server's certificate + The certificate chain containing the certificate's CA and any intermediate authorities + Any errors that were detected + + + + !!! Helper class, for compilation only. + Connector implements the logic for the Connection Objects to + access the physical connection to the database, and isolate + the application developer from connection pooling internals. + + + + + Whether the backend is an AWS Redshift instance + + + + + Constructor. + + Connection string. + Pooled + Controls whether the connector can be shared. + + + + This method checks if the connector is still ok. + We try to send a simple query text, select 1 as ConnectionTest; + + + + + This method is responsible for releasing all resources associated with this Connector. + + + + + This method is responsible to release all portals used by this Connector. + + + + + Modify the backend statement_timeout value if needed. + + New timeout + + + + Default SSL CertificateSelectionCallback implementation. + + + + + Default SSL CertificateValidationCallback implementation. + + + + + Default SSL PrivateKeySelectionCallback implementation. + + + + + Default SSL ProvideClientCertificatesCallback implementation. + + + + + Default SSL ValidateRemoteCertificateCallback implementation. + + + + + This method is required to set all the version dependent features flags. + SupportsPrepare means the server can use prepared query plans (7.3+) + + + + + Opens the physical connection to the server. + + Usually called by the RequestConnector + Method of the connection pool manager. + + + + Closes the physical connection to the server. + + + + + Returns next portal index. + + + + + Returns next plan index. + + + + + Occurs on NoticeResponses from the PostgreSQL backend. + + + + + Occurs on NotificationResponses from the PostgreSQL backend. + + + + + Called to provide client certificates for SSL handshake. + + + + + Mono.Security.Protocol.Tls.CertificateSelectionCallback delegate. + + + + + Mono.Security.Protocol.Tls.CertificateValidationCallback delegate. + + + + + Mono.Security.Protocol.Tls.PrivateKeySelectionCallback delegate. + + + + + Called to validate server's certificate during SSL handshake + + + + + Gets the current state of the connection. + + + + + Return Connection String. + + + + + Version of backend server this connector is connected to. + + + + + Whether the backend is an AWS Redshift instance + + + + + The physical connection socket to the backend. + + + + + The physical connection stream to the backend. + + + + + The top level stream to the backend. + + + + + Reports if this connector is fully connected. + + + + + The connection mediator. + + + + + Report if the connection is in a transaction. + + + + + Options that control certain aspects of native to backend conversions that depend + on backend version and status. + + + + + This class manages all connector objects, pooled AND non-pooled. + + + + Unique static instance of the connector pool + mamager. + + + Map of index to unused pooled connectors, avaliable to the + next RequestConnector() call. + This hashmap will be indexed by connection string. + This key will hold a list of queues of pooled connectors available to be used. + + + Timer for tracking unused connections in pools. + + + + Searches the shared and pooled connector lists for a + matching connector object or creates a new one. + + The NpgsqlConnection that is requesting + the connector. Its ConnectionString will be used to search the + pool for available connectors. + A connector object. + + + + Find a pooled connector. Handle shared/non-shared here. + + + + + Releases a connector, possibly back to the pool for future use. + + + Pooled connectors will be put back into the pool if there is room. + Shared connectors should just have their use count decremented + since they always stay in the shared pool. + + Connection to which the connector is leased. + The connector to release. + + + + Release a pooled connector. Handle shared/non-shared here. + + + + + Find an available pooled connector in the non-shared pool, or create + a new one if none found. + + + + + Put a pooled connector into the pool queue. + + Connection is leased to. + Connector to pool + + + + A queue with an extra Int32 for keeping track of busy connections. + + + + + Connections available to the end user + + + + + Connections currently in use + + + + + Represents information about COPY operation data transfer format as returned by server. + + + + + Only created when a CopyInResponse or CopyOutResponse is received by NpgsqlState.ProcessBackendResponses() + + + + + Returns true if this operation is currently active and field at given location is in binary format. + + + + + Returns true if this operation is currently active and in binary format. + + + + + Returns number of fields if this operation is currently active, otherwise -1 + + + + + Represents a PostgreSQL COPY FROM STDIN operation with a corresponding SQL statement + to execute against a PostgreSQL database + and an associated stream used to read data from (if provided by user) + or for writing it (when generated by driver). + Eg. new NpgsqlCopyIn("COPY mytable FROM STDIN", connection, streamToRead).Start(); + + + + + Creates NpgsqlCommand to run given query upon Start(). Data for the requested COPY IN operation can then be written to CopyData stream followed by a call to End() or Cancel(). + + + + + Given command is run upon Start(). Data for the requested COPY IN operation can then be written to CopyData stream followed by a call to End() or Cancel(). + + + + + Given command is executed upon Start() and all data from fromStream is passed to it as copy data. + + + + + Returns true if this operation is currently active and field at given location is in binary format. + + + + + Command specified upon creation is executed as a non-query. + If CopyStream is set upon creation, it will be flushed to server as copy data, and operation will be finished immediately. + Otherwise the CopyStream member can be used for writing copy data to server and operation finished with a call to End() or Cancel(). + + + + + Called after writing all data to CopyStream to successfully complete this copy operation. + + + + + Withdraws an already started copy operation. The operation will fail with given error message. + Will do nothing if current operation is not active. + + + + + Returns true if the connection is currently reserved for this operation. + + + + + The stream provided by user or generated upon Start(). + User may provide a stream to constructor; it is used to pass to server all data read from it. + Otherwise, call to Start() sets this to a writable NpgsqlCopyInStream that passes all data written to it to server. + In latter case this is only available while the copy operation is active and null otherwise. + + + + + Returns true if this operation is currently active and in binary format. + + + + + Returns number of fields expected on each input row if this operation is currently active, otherwise -1 + + + + + The Command used to execute this copy operation. + + + + + Set before a COPY IN query to define size of internal buffer for reading from given CopyStream. + + + + + Represents an ongoing COPY FROM STDIN operation. + Provides methods to push data to server and end or cancel the operation. + + + + + Called from NpgsqlState.ProcessBackendResponses upon CopyInResponse. + If CopyStream is already set, it is used to read data to push to server, after which the copy is completed. + Otherwise CopyStream is set to a writable NpgsqlCopyInStream that calls SendCopyData each time it is written to. + + + + + Sends given packet to server as a CopyData message. + Does not check for notifications! Use another thread for that. + + + + + Sends CopyDone message to server. Handles responses, ie. may throw an exception. + + + + + Sends CopyFail message to server. Handles responses, ie. should always throw an exception: + in CopyIn state the server responds to CopyFail with an error response; + outside of a CopyIn state the server responds to CopyFail with an error response; + without network connection or whatever, there's going to eventually be a failure, timeout or user intervention. + + + + + Copy format information returned from server. + + + + + Stream for writing data to a table on a PostgreSQL version 7.4 or newer database during an active COPY FROM STDIN operation. + Passes data exactly as is and when given, so see to it that you use server encoding, correct format and reasonably sized writes! + + + + + Created only by NpgsqlCopyInState.StartCopy() + + + + + Successfully completes copying data to server. Returns after operation is finished. + Does nothing if this stream is not the active copy operation writer. + + + + + Withdraws an already started copy operation. The operation will fail with given error message. + Does nothing if this stream is not the active copy operation writer. + + + + + Writes given bytes to server. + Fails if this stream is not the active copy operation writer. + + + + + Flushes stream contents to server. + Fails if this stream is not the active copy operation writer. + + + + + Not readable + + + + + Not seekable + + + + + Not supported + + + + + True while this stream can be used to write copy data to server + + + + + False + + + + + True + + + + + False + + + + + Number of bytes written so far + + + + + Number of bytes written so far; not settable + + + + + Represents a PostgreSQL COPY TO STDOUT operation with a corresponding SQL statement + to execute against a PostgreSQL database + and an associated stream used to write results to (if provided by user) + or for reading the results (when generated by driver). + Eg. new NpgsqlCopyOut("COPY (SELECT * FROM mytable) TO STDOUT", connection, streamToWrite).Start(); + + + + + Creates NpgsqlCommand to run given query upon Start(), after which CopyStream provides data from database as requested in the query. + + + + + Given command is run upon Start(), after which CopyStream provides data from database as requested in the query. + + + + + Given command is executed upon Start() and all requested copy data is written to toStream immediately. + + + + + Returns true if this operation is currently active and field at given location is in binary format. + + + + + Command specified upon creation is executed as a non-query. + If CopyStream is set upon creation, all copy data from server will be written to it, and operation will be finished immediately. + Otherwise the CopyStream member can be used for reading copy data from server until no more data is available. + + + + + Flush generated CopyStream at once. Effectively reads and discard all the rest of copy data from server. + + + + + Returns true if the connection is currently reserved for this operation. + + + + + The stream provided by user or generated upon Start() + + + + + The Command used to execute this copy operation. + + + + + Returns true if this operation is currently active and in binary format. + + + + + Returns number of fields if this operation is currently active, otherwise -1 + + + + + Faster alternative to using the generated CopyStream. + + + + + Represents an ongoing COPY TO STDOUT operation. + Provides methods to read data from server or end the operation. + + + + + Called from NpgsqlState.ProcessBackendResponses upon CopyOutResponse. + If CopyStream is already set, it is used to write data received from server, after which the copy ends. + Otherwise CopyStream is set to a readable NpgsqlCopyOutStream that receives data from server. + + + + + Called from NpgsqlOutStream.Read to read copy data from server. + + + + + Copy format information returned from server. + + + + + Stream for reading data from a table or select on a PostgreSQL version 7.4 or newer database during an active COPY TO STDOUT operation. + Passes data exactly as provided by the server. + + + + + Created only by NpgsqlCopyOutState.StartCopy() + + + + + Discards copy data as long as server pushes it. Returns after operation is finished. + Does nothing if this stream is not the active copy operation reader. + + + + + Not writable. + + + + + Not flushable. + + + + + Copies data read from server to given byte buffer. + Since server returns data row by row, length will differ each time, but it is only zero once the operation ends. + Can be mixed with calls to the more efficient NpgsqlCopyOutStream.Read() : byte[] though that would not make much sense. + + + + + Not seekable + + + + + Not supported + + + + + Returns a whole row of data from server without extra work. + If standard Stream.Read(...) has been called before, it's internal buffers remains are returned. + + + + + True while this stream can be used to read copy data from server + + + + + True + + + + + False + + + + + False + + + + + Number of bytes read so far + + + + + Number of bytes read so far; can not be set. + + + + + Writes given objects into a stream for PostgreSQL COPY in default copy format (not CSV or BINARY). + + + + + Default delimiter. + + + + + Default separator. + + + + + Default null. + + + + + Default escape. + + + + + Default quote. + + + + + Default buffer size. + + + + + Constructor. + + + + + + Flush buffers. + + + + + Flush rows. + + + + + Flush fields. + + + + + Close the serializer. + + + + + Escape sequence for the given character. + + + + + + + Make room for bytes. + + + + + + Add bytes. + + + + + + End row. + + + + + Prefix field. + + + + + Field added. + + + + + Add null. + + + + + Add string. + + + + + + add Int32. + + + + + + Add Int64. + + + + + + Add number. + + + + + + Add bool + + + + + + Add DateTime. + + + + + + Report whether the serializer is active. + + + + + To Stream. + + + + + Delimiter. + + + + + Separator. + + + + + Escape. + + + + + Null. + + + + + Buffer size. + + + + + Report whether space remains in the buffer. + + + + + Strings to escape. + + + + + Escape sequence bytes. + + + + + Represents the method that handles the RowUpdated events. + + The source of the event. + A NpgsqlRowUpdatedEventArgs that contains the event data. + + + + Represents the method that handles the RowUpdating events. + + The source of the event. + A NpgsqlRowUpdatingEventArgs that contains the event data. + + + + This class represents an adapter from many commands: select, update, insert and delete to fill Datasets. + + + + + Default constructor. + + + + + Constructor. + + + + + + Constructor. + + + + + + + Constructor. + + + + + + + Create row updated event. + + + + + + + + + + Create row updating event. + + + + + + + + + + Raise the RowUpdated event. + + + + + + Raise the RowUpdating event. + + + + + + Row updated event. + + + + + Row updating event. + + + + + Delete command. + + + + + Select command. + + + + + Update command. + + + + + Insert command. + + + + + Provides a means of reading a forward-only stream of rows from a PostgreSQL backend. This class cannot be inherited. + + + + + Return the data type name of the column at index . + + + + + Return the data type of the column at index . + + + + + Return the Npgsql specific data type of the column at requested ordinal. + + column position + Appropriate Npgsql type for column. + + + + Return the column name of the column at index . + + + + + Return the data type OID of the column at index . + + FIXME: Why this method returns String? + + + + Has ordinal. + + + + + + + Return the column name of the column named . + + + + + Return the data DbType of the column at index . + + + + + Return the data NpgsqlDbType of the column at index . + + + + + Get specified field value. + /// + + + + + + Get the value of a column as a . + If the differences between and + in handling of days and months is not important to your application, use + instead. + + Index of the field to find. + value of the field. + + + + Get specified field value. + /// + + + + + + Get specified field value. + /// + + + + + + Get specified field value. + /// + + + + + + Get specified field value. + /// + + + + + + Get specified field value. + /// + + + + + + Send closed event. + + + + + Gets the value of a column converted to a Guid. + + + + + Gets the value of a column as Int16. + + + + + Gets the value of a column as Int32. + + + + + Gets the value of a column as Int64. + + + + + Gets the value of a column as Single. + + + + + Gets the value of a column as Double. + + + + + Gets the value of a column as String. + + + + + Gets the value of a column as Decimal. + + + + + Gets the value of a column as TimeSpan. + + + + + Copy values from each column in the current row into . + + Destination for column values. + The number of column values copied. + + + + Copy values from each column in the current row into . + + An array appropriately sized to store values from all columns. + The number of column values copied. + + + + Gets the value of a column as Boolean. + + + + + Gets the value of a column as Byte. + + + + + Gets the value of a column as Char. + + + + + Gets the value of a column as DateTime. + + + + + Returns a System.Data.DataTable that describes the column metadata of the DataReader. + + + + + This methods parses the command text and tries to get the tablename + from it. + + + + + Get enumerator. + + + + + + Is raised whenever Close() is called. + + + + + Gets the number of columns in the current row. + + + + + Gets the value of a column in its native format. + + + + + Gets the value of a column in its native format. + + + + + Gets a value indicating the depth of nesting for the current row. Always returns zero. + + + + + Gets a value indicating whether the data reader is closed. + + + + + Contains the column names as the keys + + + + + Contains all unique columns + + + + + This is the primary implementation of NpgsqlDataReader. It is the one used in normal cases (where the + preload-reader option is not set in the connection string to resolve some potential backwards-compatibility + issues), the only implementation used internally, and in cases where CachingDataReader is used, it is still + used to do the actual "leg-work" of turning a response stream from the server into a datareader-style + object - with CachingDataReader then filling it's cache from here. + + + + + Iterate through the objects returned through from the server. + If it's a CompletedResponse the rowsaffected count is updated appropriately, + and we iterate again, otherwise we return it (perhaps updating our cache of pending + rows if appropriate). + + The next we will deal with. + + + + Advances the data reader to the next result, when multiple result sets were returned by the PostgreSQL backend. + + True if the reader was advanced, otherwise false. + + + + Releases the resources used by the NpgsqlCommand. + + + + + Closes the data reader object. + + + + + Advances the data reader to the next result, when multiple result sets were returned by the PostgreSQL backend. + + True if the reader was advanced, otherwise false. + + + + Advances the data reader to the next row. + + True if the reader was advanced, otherwise false. + + + + Return the value of the column at index . + + + + + Gets raw data from a column. + + + + + Gets raw data from a column. + + + + + Report whether the value in a column is DBNull. + + + + + Gets the number of rows changed, inserted, or deleted by execution of the SQL statement. + + + + + Indicates if NpgsqlDatareader has rows to be read. + + + + + Provides an implementation of NpgsqlDataReader in which all data is pre-loaded into memory. + This operates by first creating a ForwardsOnlyDataReader as usual, and then loading all of it's + Rows into memory. There is a general principle that when there is a trade-off between a class design that + is more efficient and/or scalable on the one hand and one that is less efficient but has more functionality + (in this case the internal-only functionality of caching results) that one can build the less efficent class + from the most efficient without significant extra loss in efficiency, but not the other way around. The relationship + between ForwardsOnlyDataReader and CachingDataReader is an example of this). + Since the interface presented to the user is still forwards-only, queues are used to + store this information, so that dequeueing as we go we give the garbage collector the best opportunity + possible to reclaim any memory that is no longer in use. + ForwardsOnlyDataReader being used to actually + obtain the information from the server means that the "leg-work" is still only done (and need only be + maintained) in one place. + This class exists to allow for certain potential backwards-compatibility issues to be resolved + with little effort on the part of affected users. It is considerably less efficient than ForwardsOnlyDataReader + and hence never used internally. + + + + + This is the base class for NpgsqlDescribeStatement and NpgsqlDescribePortal. + + + + + + This class represents the Statement Describe message sent to PostgreSQL + server. + + + + + + This class represents the Portal Describe message sent to PostgreSQL + server. + + + + + + EventArgs class to send Notice parameters, which are just NpgsqlError's in a lighter context. + + + + + Notice information. + + + + + This class represents the ErrorResponse and NoticeResponse + message sent from PostgreSQL server. + + + + + Return a string representation of this error object. + + + + + Severity code. All versions. + + + + + Error code. PostgreSQL 7.4 and up. + + + + + Terse error message. All versions. + + + + + Detailed error message. PostgreSQL 7.4 and up. + + + + + Suggestion to help resolve the error. PostgreSQL 7.4 and up. + + + + + Position (one based) within the query string where the error was encounterd. PostgreSQL 7.4 and up. + + + + + Position (one based) within the query string where the error was encounterd. This position refers to an internal command executed for example inside a PL/pgSQL function. PostgreSQL 7.4 and up. + + + + + Internal query string where the error was encounterd. This position refers to an internal command executed for example inside a PL/pgSQL function. PostgreSQL 7.4 and up. + + + + + Trace back information. PostgreSQL 7.4 and up. + + + + + Source file (in backend) reporting the error. PostgreSQL 7.4 and up. + + + + + Source file line number (in backend) reporting the error. PostgreSQL 7.4 and up. + + + + + Source routine (in backend) reporting the error. PostgreSQL 7.4 and up. + + + + + Schema name which relates to the error. PostgreSQL 9.3 and up. + + + + + Table name which relates to the error. PostgreSQL 9.3 and up. + + + + + Column name which relates to the error. PostgreSQL 9.3 and up. + + + + + Data type of column which relates to the error. PostgreSQL 9.3 and up. + + + + + Constraint name which relates to the error. PostgreSQL 9.3 and up. + + + + + String containing the sql sent which produced this error. + + + + + Backend protocol version in use. + + + + + Error and notice message field codes + + + + + Severity: the field contents are ERROR, FATAL, or PANIC (in an error message), + or WARNING, NOTICE, DEBUG, INFO, or LOG (in a notice message), or a localized + translation of one of these. Always present. + + + + + Code: the SQLSTATE code for the error (see Appendix A). Not localizable. Always present. + + + + + Message: the primary human-readable error message. This should be accurate + but terse (typically one line). Always present. + + + + + Detail: an optional secondary error message carrying more detail about the problem. + Might run to multiple lines. + + + + + Hint: an optional suggestion what to do about the problem. This is intended to differ + from Detail in that it offers advice (potentially inappropriate) rather than hard facts. + Might run to multiple lines. + + + + + Position: the field value is a decimal ASCII integer, indicating an error cursor + position as an index into the original query string. The first character has index 1, + and positions are measured in characters not bytes. + + + + + Internal position: this is defined the same as the P field, but it is used when the + cursor position refers to an internally generated command rather than the one submitted + by the client. + The q field will always appear when this field appears. + + + + + Internal query: the text of a failed internally-generated command. + This could be, for example, a SQL query issued by a PL/pgSQL function. + + + + + Where: an indication of the context in which the error occurred. + Presently this includes a call stack traceback of active procedural language functions + and internally-generated queries. The trace is one entry per line, most recent first. + + + + + Schema name: if the error was associated with a specific database object, + the name of the schema containing that object, if any. + + + + + Table name: if the error was associated with a specific table, the name of the table. + (Refer to the schema name field for the name of the table's schema.) + + + + + Column name: if the error was associated with a specific table column, the name of the column. + (Refer to the schema and table name fields to identify the table.) + + + + + Data type name: if the error was associated with a specific data type, the name of the data type. + (Refer to the schema name field for the name of the data type's schema.) + + + + + Constraint name: if the error was associated with a specific constraint, the name of the constraint. + Refer to fields listed above for the associated table or domain. + (For this purpose, indexes are treated as constraints, even if they weren't created with constraint syntax.) + + + + + File: the file name of the source-code location where the error was reported. + + + + + Line: the line number of the source-code location where the error was reported. + + + + + Routine: the name of the source-code routine reporting the error. + + + + + The level of verbosity of the NpgsqlEventLog + + + + + Don't log at all + + + + + Only log the most common issues + + + + + Log everything + + + + + This class handles all the Npgsql event and debug logging + + + + + Writes a string to the Npgsql event log if msglevel is bigger then NpgsqlEventLog.Level + + + This method is obsolete and should no longer be used. + It is likely to be removed in future versions of Npgsql + + The message to write to the event log + The minimum LogLevel for which this message should be logged. + + + + Writes a string to the Npgsql event log if msglevel is bigger then NpgsqlEventLog.Level + + The ResourceManager to get the localized resources + The name of the resource that should be fetched by the ResourceManager + The minimum LogLevel for which this message should be logged. + The additional parameters that shall be included into the log-message (must be compatible with the string in the resource): + + + + Writes the default log-message for the action of calling the Get-part of an Indexer to the log file. + + The minimum LogLevel for which this message should be logged. + The name of the class that contains the Indexer + The parameter given to the Indexer + + + + Writes the default log-message for the action of calling the Set-part of an Indexer to the logfile. + + The minimum LogLevel for which this message should be logged. + The name of the class that contains the Indexer + The parameter given to the Indexer + The value the Indexer is set to + + + + Writes the default log-message for the action of calling the Get-part of a Property to the logfile. + + The minimum LogLevel for which this message should be logged. + The name of the class that contains the Property + The name of the Property + + + + Writes the default log-message for the action of calling the Set-part of a Property to the logfile. + + The minimum LogLevel for which this message should be logged. + The name of the class that contains the Property + The name of the Property + The value the Property is set to + + + + Writes the default log-message for the action of calling a Method without Arguments to the logfile. + + The minimum LogLevel for which this message should be logged. + The name of the class that contains the Method + The name of the Method + + + + Writes the default log-message for the action of calling a Method with one Argument to the logfile. + + The minimum LogLevel for which this message should be logged. + The name of the class that contains the Method + The name of the Method + The value of the Argument of the Method + + + + Writes the default log-message for the action of calling a Method with two Arguments to the logfile. + + The minimum LogLevel for which this message should be logged. + The name of the class that contains the Method + The name of the Method + The value of the first Argument of the Method + The value of the second Argument of the Method + + + + Writes the default log-message for the action of calling a Method with three Arguments to the logfile. + + The minimum LogLevel for which this message should be logged. + The name of the class that contains the Method + The name of the Method + The value of the first Argument of the Method + The value of the second Argument of the Method + The value of the third Argument of the Method + + + + Writes the default log-message for the action of calling a Method with more than three Arguments to the logfile. + + The minimum LogLevel for which this message should be logged. + The name of the class that contains the Method + The name of the Method + A Object-Array with zero or more Ojects that are Arguments of the Method. + + + + Sets/Returns the filename to use for logging. + + The filename of the current Log file. + + + + Sets/Returns whether Log messages should be echoed to the console + + true if Log messages are echoed to the console, otherwise false + + + + The exception that is thrown when the PostgreSQL backend reports errors. + + + + + Construct a backend error exception based on a list of one or more + backend errors. The basic Exception.Message will be built from the + first (usually the only) error in the list. + + + + + Get object data. + + + + + + + Format a .NET style exception string. + Include all errors in the list, including any hints. + + + + + Append a line to the given Stream, first checking for zero-length. + + + + + Provide access to the entire list of errors provided by the PostgreSQL backend. + + + + + Severity code. All versions. + + + + + Error code. PostgreSQL 7.4 and up. + + + + + Basic error message. All versions. + + + + + Detailed error message. PostgreSQL 7.4 and up. + + + + + Suggestion to help resolve the error. PostgreSQL 7.4 and up. + + + + + Position (one based) within the query string where the error was encounterd. PostgreSQL 7.4 and up. + + + + + Trace back information. PostgreSQL 7.4 and up. + + + + + Source file (in backend) reporting the error. PostgreSQL 7.4 and up. + + + + + Source file line number (in backend) reporting the error. PostgreSQL 7.4 and up. + + + + + Source routine (in backend) reporting the error. PostgreSQL 7.4 and up. + + + + + Schema name which relates to the error. PostgreSQL 9.3 and up. + + + + + Table name which relates to the error. PostgreSQL 9.3 and up. + + + + + Column name which relates to the error. PostgreSQL 9.3 and up. + + + + + Data type of column which relates to the error. PostgreSQL 9.3 and up. + + + + + Constraint name which relates to the error. PostgreSQL 9.3 and up. + + + + + String containing the sql sent which produced this error. + + + + + Returns the entire list of errors provided by the PostgreSQL backend. + + + + + This class represents the Execute message sent to PostgreSQL + server. + + + + + + A factory to create instances of various Npgsql objects. + + + + + Creates an NpgsqlCommand object. + + + + + This class represents the Flush message sent to PostgreSQL + server. + + + + + + For classes representing simple messages, + consisting only of a message code and length identifier, + sent from the client to the server. + + + + + This class is responsible for serving as bridge between the backend + protocol handling and the core classes. It is used as the mediator for + exchanging data generated/sent from/to backend. + + + + + + The current command timeout on the backend. This is set via "SET statement_timeout = (milliseconds)". + A value of -1 means the backend's timeout value is unknown because it has not yet been set. + + + + + EventArgs class to send Notification parameters. + + + + + Process ID of the PostgreSQL backend that sent this notification. + + + + + Condition that triggered that notification. + + + + + Additional Information From Notifiying Process (for future use, currently postgres always sets this to an empty string) + + + + + This class represents a parameter to a command that will be sent to server + + + + + Initializes a new instance of the NpgsqlParameter class. + + + + + Initializes a new instance of the NpgsqlParameter + class with the parameter m_Name and a value of the new NpgsqlParameter. + + The m_Name of the parameter to map. + An Object that is the value of the NpgsqlParameter. + +

When you specify an Object + in the value parameter, the DbType is + inferred from the .NET Framework type of the Object.

+

When using this constructor, you must be aware of a possible misuse of the constructor which takes a DbType parameter. + This happens when calling this constructor passing an int 0 and the compiler thinks you are passing a value of DbType. + Use Convert.ToInt32(value) for example to have compiler calling the correct constructor.

+
+
+ + + Initializes a new instance of the NpgsqlParameter + class with the parameter m_Name and the data type. + + The m_Name of the parameter to map. + One of the DbType values. + + + + Initializes a new instance of the NpgsqlParameter. + + The m_Name of the parameter to map. + One of the DbType values. + + + + Initializes a new instance of the NpgsqlParameter. + + The m_Name of the parameter to map. + One of the NpgsqlDbType values. + The length of the parameter. + + + + Initializes a new instance of the NpgsqlParameter. + + The m_Name of the parameter to map. + One of the DbType values. + The length of the parameter. + + + + Initializes a new instance of the NpgsqlParameter + + The m_Name of the parameter to map. + One of the NpgsqlDbType values. + The length of the parameter. + The m_Name of the source column. + + + + Initializes a new instance of the NpgsqlParameter. + + The m_Name of the parameter to map. + One of the DbType values. + The length of the parameter. + The m_Name of the source column. + + + + Initializes a new instance of the NpgsqlParameter. + + The m_Name of the parameter to map. + One of the NpgsqlDbType values. + The length of the parameter. + The m_Name of the source column. + One of the ParameterDirection values. + true if the value of the field can be null, otherwise false. + The total number of digits to the left and right of the decimal point to which + Value is resolved. + The total number of decimal places to which + Value is resolved. + One of the DataRowVersion values. + An Object that is the value + of the NpgsqlParameter. + + + + Initializes a new instance of the NpgsqlParameter. + + The m_Name of the parameter to map. + One of the DbType values. + The length of the parameter. + The m_Name of the source column. + One of the ParameterDirection values. + true if the value of the field can be null, otherwise false. + The total number of digits to the left and right of the decimal point to which + Value is resolved. + The total number of decimal places to which + Value is resolved. + One of the DataRowVersion values. + An Object that is the value + of the NpgsqlParameter. + + + + Reset DBType. + + + + + Creates a new NpgsqlParameter that + is a copy of the current instance. + + A new NpgsqlParameter that is a copy of this instance. + + + + The collection to which this parameter belongs, if any. + + + + + Gets or sets the maximum number of digits used to represent the + Value property. + + The maximum number of digits used to represent the + Value property. + The default value is 0, which indicates that the data provider + sets the precision for Value. + + + + Whether to use an explicit cast when included in a query. + + + + + Gets or sets the number of decimal places to which + Value is resolved. + + The number of decimal places to which + Value is resolved. The default is 0. + + + + Gets or sets the maximum size, in bytes, of the data within the column. + + The maximum size, in bytes, of the data within the column. + The default value is inferred from the parameter value. + + + + Gets or sets the DbType of the parameter. + + One of the DbType values. The default is String. + + + + Gets or sets the DbType of the parameter. + + One of the DbType values. The default is String. + + + + Gets or sets a value indicating whether the parameter is input-only, + output-only, bidirectional, or a stored procedure return value parameter. + + One of the ParameterDirection + values. The default is Input. + + + + Gets or sets a value indicating whether the parameter accepts null values. + + true if null values are accepted; otherwise, false. The default is false. + + + + Gets or sets the m_Name of the NpgsqlParameter. + + The m_Name of the NpgsqlParameter. + The default is an empty string. + + + + The m_Name scrubbed of any optional marker + + + + + Gets or sets the m_Name of the source column that is mapped to the + DataSet and used for loading or + returning the Value. + + The m_Name of the source column that is mapped to the + DataSet. The default is an empty string. + + + + Gets or sets the DataRowVersion + to use when loading Value. + + One of the DataRowVersion values. + The default is Current. + + + + Gets or sets the value of the parameter. + + An Object that is the value of the parameter. + The default value is null. + + + + Gets or sets the value of the parameter. + + An Object that is the value of the parameter. + The default value is null. + + + + Source column mapping. + + + + + Represents a collection of parameters relevant to a NpgsqlCommand + as well as their respective mappings to columns in a DataSet. + This class cannot be inherited. + + + + + Initializes a new instance of the NpgsqlParameterCollection class. + + + + + Invalidate the hash lookup tables. This should be done any time a change + may throw the lookups out of sync with the list. + + + + + Adds the specified NpgsqlParameter object to the NpgsqlParameterCollection. + + The NpgsqlParameter to add to the collection. + The index of the new NpgsqlParameter object. + + + + Obsolete. Use AddWithValue instead. + + + Use caution when using this overload of the + Add method to specify integer parameter values. + Because this overload takes a value of type Object, + you must convert the integral value to an Object + type when the value is zero, as the following C# example demonstrates. + parameters.Add(":pname", Convert.ToInt32(0)); + If you do not perform this conversion, the compiler will assume you + are attempting to call the NpgsqlParameterCollection.Add(string, DbType) overload. + + + + + Adds a NpgsqlParameter to the NpgsqlParameterCollection given the specified parameter name and value. + + The name of the NpgsqlParameter. + The Value of the NpgsqlParameter to add to the collection. + The paramater that was added. + + + + Adds a NpgsqlParameter to the NpgsqlParameterCollection given the specified parameter name and value. + + The name of the NpgsqlParameter. + The Value of the NpgsqlParameter to add to the collection. + One of the NpgsqlDbType values. + The paramater that was added. + + + + Adds a NpgsqlParameter to the NpgsqlParameterCollection given the specified parameter name and value. + + The name of the NpgsqlParameter. + The Value of the NpgsqlParameter to add to the collection. + One of the NpgsqlDbType values. + The length of the column. + The paramater that was added. + + + + Adds a NpgsqlParameter to the NpgsqlParameterCollection given the specified parameter name and value. + + The name of the NpgsqlParameter. + The Value of the NpgsqlParameter to add to the collection. + One of the NpgsqlDbType values. + The length of the column. + The name of the source column. + The paramater that was added. + + + + Adds a NpgsqlParameter to the NpgsqlParameterCollection given the parameter name and the data type. + + The name of the parameter. + One of the DbType values. + The index of the new NpgsqlParameter object. + + + + Adds a NpgsqlParameter to the NpgsqlParameterCollection with the parameter name, the data type, and the column length. + + The name of the parameter. + One of the DbType values. + The length of the column. + The index of the new NpgsqlParameter object. + + + + Adds a NpgsqlParameter to the NpgsqlParameterCollection with the parameter name, the data type, the column length, and the source column name. + + The name of the parameter. + One of the DbType values. + The length of the column. + The name of the source column. + The index of the new NpgsqlParameter object. + + + + Removes the specified NpgsqlParameter from the collection using the parameter name. + + The name of the NpgsqlParameter object to retrieve. + + + + Gets a value indicating whether a NpgsqlParameter with the specified parameter name exists in the collection. + + The name of the NpgsqlParameter object to find. + true if the collection contains the parameter; otherwise, false. + + + + Gets the location of the NpgsqlParameter in the collection with a specific parameter name. + + The name of the NpgsqlParameter object to find. + The zero-based location of the NpgsqlParameter in the collection. + + + + Removes the specified NpgsqlParameter from the collection using a specific index. + + The zero-based index of the parameter. + + + + Inserts a NpgsqlParameter into the collection at the specified index. + + The zero-based index where the parameter is to be inserted within the collection. + The NpgsqlParameter to add to the collection. + + + + Removes the specified NpgsqlParameter from the collection. + + The name of the NpgsqlParameter to remove from the collection. + + + + Removes the specified NpgsqlParameter from the collection. + + The NpgsqlParameter to remove from the collection. + + + + Gets a value indicating whether a NpgsqlParameter exists in the collection. + + The value of the NpgsqlParameter object to find. + true if the collection contains the NpgsqlParameter object; otherwise, false. + + + + Gets a value indicating whether a NpgsqlParameter with the specified parameter name exists in the collection. + + The name of the NpgsqlParameter object to find. + A reference to the requested parameter is returned in this out param if it is found in the list. This value is null if the parameter is not found. + true if the collection contains the parameter and param will contain the parameter; otherwise, false. + + + + Removes all items from the collection. + + + + + Gets the location of a NpgsqlParameter in the collection. + + The value of the NpgsqlParameter object to find. + The zero-based index of the NpgsqlParameter object in the collection. + + + + Adds the specified NpgsqlParameter object to the NpgsqlParameterCollection. + + The NpgsqlParameter to add to the collection. + The zero-based index of the new NpgsqlParameter object. + + + + Copies NpgsqlParameter objects from the NpgsqlParameterCollection to the specified array. + + An Array to which to copy the NpgsqlParameter objects in the collection. + The starting index of the array. + + + + Returns an enumerator that can iterate through the collection. + + An IEnumerator that can be used to iterate through the collection. + + + + Add an Array of parameters to the collection. + + Parameters to add. + + + + Get parameter. + + + + + + + Get parameter. + + + + + + + Set parameter. + + + + + + + Set parameter. + + + + + + + In methods taking an object as argument this method is used to verify + that the argument has the type NpgsqlParameter + + The object to verify + + + + Report the offset within the collection of the given parameter. + + Parameter to find. + Index of the parameter, or -1 if the parameter is not present. + + + + Insert the specified parameter into the collection. + + Index of the existing parameter before which to insert the new one. + Parameter to insert. + + + + Report whether the specified parameter is present in the collection. + + Parameter to find. + True if the parameter was found, otherwise false. + + + + Remove the specified parameter from the collection. + + Parameter to remove. + True if the parameter was found and removed, otherwise false. + + + + Convert collection to a System.Array. + + Destination array. + Starting index in destination array. + + + + Convert collection to a System.Array. + + NpgsqlParameter[] + + + + Gets the NpgsqlParameter with the specified name. + + The name of the NpgsqlParameter to retrieve. + The NpgsqlParameter with the specified name, or a null reference if the parameter is not found. + + + + Gets the NpgsqlParameter at the specified index. + + The zero-based index of the NpgsqlParameter to retrieve. + The NpgsqlParameter at the specified index. + + + + Report whether the collection is read only. Always false. + + + + + Report whether the collection is fixed size. Always false. + + + + + Report whether the collection is synchronized. + + + + + Gets the number of NpgsqlParameter objects in the collection. + + The number of NpgsqlParameter objects in the collection. + + + + Sync root. + + + + + This class represents the ParameterStatus message sent from PostgreSQL + server. + + + + + + This class represents the Parse message sent to PostgreSQL + server. + + + + + + This class represents a PasswordPacket message sent to backend + PostgreSQL. + + + + + Used when a connection is closed + + + + + This is the abstract base class for NpgsqlAsciiRow and NpgsqlBinaryRow. + + + + + The index of the current field in the stream, i.e. the one that hasn't + been read yet + + + + + This class represents a RowDescription message sent from + the PostgreSQL. + + + + + + This struct represents the internal data of the RowDescription message. + + + + + Provides the underlying mechanism for reading schema information. + + + + + Returns the MetaDataCollections that lists all possible collections. + + The MetaDataCollections + + + + Returns the Restrictions that contains the meaning and position of the values in the restrictions array. + + The Restrictions + + + + Returns the Databases that contains a list of all accessable databases. + + The database connection on which to run the metadataquery. + The restrictions to filter the collection. + The Databases + + + + Returns the Tables that contains table and view names and the database and schema they come from. + + The database connection on which to run the metadataquery. + The restrictions to filter the collection. + The Tables + + + + Returns the Columns that contains information about columns in tables. + + The database connection on which to run the metadataquery. + The restrictions to filter the collection. + The Columns. + + + + Returns the Views that contains view names and the database and schema they come from. + + The database connection on which to run the metadataquery. + The restrictions to filter the collection. + The Views + + + + Returns the Users containing user names and the sysid of those users. + + The database connection on which to run the metadataquery. + The restrictions to filter the collection. + The Users. + + + + This class represents a StartupPacket message of PostgreSQL + protocol. + + + + + + Represents a completed response message. + + + + + This class represents the Sync message sent to PostgreSQL + server. + + + + + + Represents a transaction to be made in a PostgreSQL database. This class cannot be inherited. + + + + + Dispose. + + + + + + Commits the database transaction. + + + + + Rolls back a transaction from a pending state. + + + + + Rolls back a transaction from a pending savepoint state. + + + + + Creates a transaction save point. + + + + + Cancel the transaction without telling the backend about it. This is + used to make the transaction go away when closing a connection. + + + + + Gets the NpgsqlConnection + object associated with the transaction, or a null reference if the + transaction is no longer valid. + + The NpgsqlConnection + object associated with the transaction. + + + + DB connection. + + + + + Specifies the IsolationLevel for this transaction. + + The IsolationLevel for this transaction. + The default is ReadCommitted. + + + + This class provides many util methods to handle + reading and writing of PostgreSQL protocol messages. + + + + + This method takes a ProtocolVersion and returns an integer + version number that the Postgres backend will recognize in a + startup packet. + + + + + This method takes a version string as returned by SELECT VERSION() and returns + a valid version string ("7.2.2" for example). + This is only needed when running protocol version 2. + This does not do any validity checks. + + + + + This method gets a C NULL terminated string from the network stream. + It keeps reading a byte in each time until a NULL byte is returned. + It returns the resultant string of bytes read. + This string is sent from backend. + + + + + Reads requested number of bytes from stream with retries until Stream.Read returns 0 or count is reached. + + Stream to read + byte buffer to fill + starting position to fill the buffer + number of bytes to read + The number of bytes read. May be less than count if no more bytes are available. + + + + Reads requested number of bytes from . If output matches exactly, and == false, is returned directly. + + Source array. + Starting position to read from + Number of bytes to read + Force a copy, even if the output is an exact copy of . + byte[] containing data requested. + + + + This method writes a string to the network stream. + + + + + This method writes a string to the network stream. + + + + + This method writes a C NULL terminated string to the network stream. + It appends a NULL terminator to the end of the String. + + + + + This method writes a C NULL terminated string to the network stream. + It appends a NULL terminator to the end of the String. + + + + + This method writes a byte to the stream. It also enables logging of them. + + + + + This method writes a byte to the stream. It also enables logging of them. + + + + + This method writes a set of bytes to the stream. It also enables logging of them. + + + + + This method writes a set of bytes to the stream. It also enables logging of them. + + + + + This method writes a C NULL terminated string limited in length to the + backend server. + It pads the string with null bytes to the size specified. + + + + + This method writes a C NULL terminated byte[] limited in length to the + backend server. + It pads the string with null bytes to the size specified. + + + + + Write a 32-bit integer to the given stream in the correct byte order. + + + + + Read a 32-bit integer from the given stream in the correct byte order. + + + + + Read a 32-bit integer from the given array in the correct byte order. + + + + + Write a 16-bit integer to the given stream in the correct byte order. + + + + + Read a 16-bit integer from the given stream in the correct byte order. + + + + + Read a 16-bit integer from the given array in the correct byte order. + + + + + Copy and possibly reverse a byte array, depending on host architecture endienness. + + Source byte array. + Force a copy even if no swap is performed. + , reversed if on a little-endian architecture, copied if required. + + + + Copy and possibly reverse a byte array, depending on host architecture endienness. + + Source byte array. + Starting offset in source array. + Number of bytes to copy. + Force a copy even if no swap is performed. + , reversed if on a little-endian architecture, copied if required. + + + + Represent the frontend/backend protocol version. + + + + + Represent the backend server version. + As this class offers no functionality beyond that offered by it has been + deprecated in favour of that class. + + + + + + Returns the string representation of this version in three place dot notation (Major.Minor.Patch). + + + + + Server version major number. + + + + + Server version minor number. + + + + + Server version patch level number. + + + + + A class to handle everything associated with SSPI authentication + + + + + Simplified SecBufferDesc struct with only one SecBuffer + + +
+
diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/NuGet.Core.dll b/migrate_data/acc_pgsqlTest/bin/Debug/NuGet.Core.dll new file mode 100644 index 0000000..01ac733 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/NuGet.Core.dll differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/Renci.SshNet.dll b/migrate_data/acc_pgsqlTest/bin/Debug/Renci.SshNet.dll new file mode 100644 index 0000000..66e3d1a Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/Renci.SshNet.dll differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/Renci.SshNet.xml b/migrate_data/acc_pgsqlTest/bin/Debug/Renci.SshNet.xml new file mode 100644 index 0000000..0de0d7e --- /dev/null +++ b/migrate_data/acc_pgsqlTest/bin/Debug/Renci.SshNet.xml @@ -0,0 +1,16751 @@ + + + + Renci.SshNet + + + + + Base class for all supported authentication methods + + + + + Base interface for authentication of a session using a given method. + + + + + Authenticates the specified session. + + The session to authenticate. + + The result of the authentication process. + + + + + Gets the list of allowed authentications. + + + The list of allowed authentications. + + + + + Gets the name of the authentication method. + + + The name of the authentication method. + + + + + Initializes a new instance of the class. + + The username. + is whitespace or null. + + + + Authenticates the specified session. + + The session to authenticate. + + The result of the authentication process. + + + + + Authenticates the specified session. + + The session to authenticate. + + The result of the authentication process. + + + + + Gets the name of the authentication method. + + + The name of the authentication method. + + + + + Gets connection username. + + + + + Gets list of allowed authentications. + + + + + Represents possible authentication methods results + + + + + Authentication was successful. + + + + + Authentication completed with partial success. + + + + + Authentication failed. + + + + + Serves as base class for client implementations, provides common client functionality. + + + + + Holds value indicating whether the connection info is owned by this client. + + + + + Initializes a new instance of the class. + + The connection info. + Specified whether this instance owns the connection info. + is null. + + If is true, then the + connection info will be disposed when this instance is disposed. + + + + + Initializes a new instance of the class. + + The connection info. + Specified whether this instance owns the connection info. + The factory to use for creating new services. + is null. + is null. + + If is true, then the + connection info will be disposed when this instance is disposed. + + + + + Connects client to the server. + + The client is already connected. + The method was called after the client was disposed. + Socket connection to the SSH server or proxy server could not be established, or an error occurred while resolving the hostname. + SSH session could not be established. + Authentication of SSH session failed. + Failed to establish proxy connection. + + + + Disconnects client from the server. + + The method was called after the client was disposed. + + + + Sends a keep-alive message to the server. + + + Use to configure the client to send a keep-alive at regular + intervals. + + The method was called after the client was disposed. + + + + Called when client is connecting to the server. + + + + + Called when client is connected to the server. + + + + + Called when client is disconnecting from the server. + + + + + Called when client is disconnected from the server. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged ResourceMessages. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Check if the current instance is disposed. + + THe current instance is disposed. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Stops the keep-alive timer, and waits until all timer callbacks have been + executed. + + + + + Starts the keep-alive timer. + + + When is negative one (-1) milliseconds, then + the timer will not be started. + + + + + Gets the current session. + + + The current session. + + + + + Gets the factory for creating new services. + + + The factory for creating new services. + + + + + Gets the connection info. + + + The connection info. + + The method was called after the client was disposed. + + + + Gets a value indicating whether this client is connected to the server. + + + true if this client is connected; otherwise, false. + + The method was called after the client was disposed. + + + + Gets or sets the keep-alive interval. + + + The keep-alive interval. Specify negative one (-1) milliseconds to disable the + keep-alive. This is the default value. + + The method was called after the client was disposed. + + + + Occurs when an error occurred. + + + + + + + + Occurs when host key received. + + + + + + + + Represents SSH channel. + + + + + Closes the channel. + + + + + Sends a SSH_MSG_CHANNEL_DATA message with the specified payload. + + The payload to send. + + + + Occurs when message received + + + + + Occurs when an exception is thrown when processing channel messages. + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Gets the local channel number. + + + The local channel number. + + + + + Gets the maximum size of a packet. + + + The maximum size of a packet. + + + + + Gets the maximum size of a data packet that can be sent using the channel. + + + The maximum size of data that can be sent using a + on the current channel. + + The channel has not been opened, or the open has not yet been confirmed. + + + + Gets a value indicating whether this channel is open. + + + true if this channel is open; otherwise, false. + + + + + A "direct-tcpip" SSH channel. + + + + + Opens a channel for a locally forwarded TCP/IP port. + + The name of the remote host to forward to. + The port of the remote hosts to forward to. + The forwarded port for which the channel is opened. + The socket to receive requests from, and send responses from the remote host to. + + + + Binds the channel to the remote host. + + + + + Closes the channel. + + + + + Occurs when an exception is thrown while processing channel messages. + + + + + Gets a value indicating whether this channel is open. + + + true if this channel is open; otherwise, false. + + + + + Gets the local channel number. + + + The local channel number. + + + + + A "forwarded-tcpip" SSH channel. + + + + + Binds the channel to the specified endpoint. + + The endpoint to connect to. + The forwarded port for which the channel is opened. + + + + Closes the channel. + + + + + Occurs when an exception is thrown while processing channel messages. + + + + + Session SSH channel. + + + + + Opens the channel. + + + + + Sends the pseudo terminal request. + + The environment variable. + The columns. + The rows. + The width. + The height. + The terminal mode values. + + true if request was successful; otherwise false. + + + + + Sends the X11 forwarding request. + + if set to true the it is single connection. + The protocol. + The cookie. + The screen number. + + true if request was successful; otherwise false. + + + + + Sends the environment variable request. + + Name of the variable. + The variable value. + + true if request was successful; otherwise false. + + + + + Sends the shell request. + + + true if request was successful; otherwise false. + + + + + Sends the exec request. + + The command. + + true if request was successful; otherwise false. + + + + + Sends the exec request. + + Length of the break. + + true if request was successful; otherwise false. + + + + + Sends the subsystem request. + + The subsystem. + + true if request was successful; otherwise false. + + + + + Sends the window change request. + + The columns. + The rows. + The width. + The height. + + true if request was successful; otherwise false. + + + + + Sends the local flow request. + + if set to true [client can do]. + + true if request was successful; otherwise false. + + + + + Sends the signal request. + + Name of the signal. + + true if request was successful; otherwise false. + + + + + Sends the exit status request. + + The exit status. + + true if request was successful; otherwise false. + + + + + Sends the exit signal request. + + Name of the signal. + if set to true [core dumped]. + The error message. + The language. + + true if request was successful; otherwise false. + + + + + Sends eow@openssh.com request. + + + true if request was successful; otherwise false. + + + + + Sends keepalive@openssh.com request. + + + true if request was successful; otherwise false. + + + + + Provides additional information for asynchronous command execution + + + + + Initializes a new instance of the class. + + + + + Gets or sets the bytes received. If SFTP only file bytes are counted. + + Total bytes received. + + + + Gets or sets the bytes sent by SFTP. + + Total bytes sent. + + + + Gets a user-defined object that qualifies or contains information about an asynchronous operation. + + A user-defined object that qualifies or contains information about an asynchronous operation. + + + + Gets a that is used to wait for an asynchronous operation to complete. + + A that is used to wait for an asynchronous operation to complete. + + + + Gets a value that indicates whether the asynchronous operation completed synchronously. + + true if the asynchronous operation completed synchronously; otherwise, false. + + + + Gets a value that indicates whether the asynchronous operation has completed. + + true if the operation is complete; otherwise, false. + + + + Represents base class for SSH channel implementations. + + + + + Holds a value indicating whether the SSH_MSG_CHANNEL_CLOSE has been sent to the remote party. + + + 0 when the SSH_MSG_CHANNEL_CLOSE message has not been sent or considered + 1 when sending a SSH_MSG_CHANNEL_CLOSE message to the remote party is under consideration + 2 when this message has been sent to the remote party + + + + + Holds a value indicating whether a SSH_MSG_CHANNEL_CLOSE has been received from the other + party. + + + true when a SSH_MSG_CHANNEL_CLOSE message has been received from the other party; + otherwise, false. + + + + + Holds a value indicating whether the SSH_MSG_CHANNEL_EOF has been received from the other party. + + + true when a SSH_MSG_CHANNEL_EOF message has been received from the other party; + otherwise, false. + + + + + Holds a value indicating whether the SSH_MSG_CHANNEL_EOF has been sent to the remote party. + + + 0 when the SSH_MSG_CHANNEL_EOF message has not been sent or considered + 1 when sending a SSH_MSG_CHANNEL_EOF message to the remote party is under consideration + 2 when this message has been sent to the remote party + + + + + Initializes a new instance. + + The session. + The local channel number. + Size of the window. + Size of the packet. + + + + Sends a SSH_MSG_CHANNEL_DATA message with the specified payload. + + The payload to send. + + + + Closes the channel. + + + + + Called when channel window need to be adjust. + + The bytes to add. + + + + Called when channel data is received. + + The data. + + + + Called when channel extended data is received. + + The data. + The data type code. + + + + Called when channel has no more data to receive. + + + + + Called when channel is closed by the server. + + + + + Called when channel request received. + + Channel request information. + + + + Called when channel request was successful + + + + + Called when channel request failed. + + + + + Raises event. + + The exception. + + + + Sends a message to the server. + + The message to send. + + true if the message was sent to the server; otherwise, false. + + The size of the packet exceeds the maximum size defined by the protocol. + + This methods returns false when the attempt to send the message results in a + or a . + + + + + Sends SSH message to the server. + + The message. + + + + Sends channel data message to the servers. + + Channel data message. + + + When the data of the message exceeds the maximum packet size or the remote window + size does not allow the full message to be sent, then this method will send the + data in multiple chunks and will only wait for the remote window size to be adjusted + when its zero. + + + This is done to support SSH servers will a small window size that do not agressively + increase their window size. We need to take into account that there may be SSH + servers that only increase their window size when it has reached zero. + + + + + + Sends channel extended data message to the servers. + + Channel data message. + + + When the data of the message exceeds the maximum packet size or the remote window + size does not allow the full message to be sent, then this method will send the + data in multiple chunks and will only wait for the remote window size to be adjusted + when its zero. + + + This is done to support SSH servers will a small window size that do not agressively + increase their window size. We need to take into account that there may be SSH + servers that only increase their window size when it has reached zero. + + + + + + Waits for the handle to be signaled or for an error to occurs. + + The wait handle. + + + + Closes the channel, optionally waiting for the SSH_MSG_CHANNEL_CLOSE message to + be received from the server. + + true to wait for the SSH_MSG_CHANNEL_CLOSE message to be received from the server; otherwise, false. + + + + Called when an occurs while processing a channel message. + + The . + + This method will in turn invoke , and + raise the event. + + + + + Determines the length of data that currently can be sent in a single message. + + The length of the message that must be sent. + + The actual data length that currently can be sent. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Occurs when an exception is thrown when processing channel messages. + + + + + Gets the session. + + + Thhe session. + + + + + Gets the type of the channel. + + + The type of the channel. + + + + + Gets the local channel number. + + + The local channel number. + + + + + Gets the maximum size of a packet. + + + The maximum size of a packet. + + + + + Gets the size of the local window. + + + The size of the local window. + + + + + Gets the remote channel number. + + + The remote channel number. + + + + + Gets the maximum size of a data packet that we can send using the channel. + + + The maximum size of data that can be sent using a + on the current channel. + + The channel has not been opened, or the open has not yet been confirmed. + + + + Gets the window size of the remote server. + + + The size of the server window. + + + + + Gets a value indicating whether this channel is open. + + + true if this channel is open; otherwise, false. + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Gets a value indicating whether the session is connected. + + + true if the session is connected; otherwise, false. + + + + + Gets the connection info. + + The connection info. + + + + Gets the session semaphore to control number of session channels + + The session semaphore. + + + + Implements "direct-tcpip" SSH channel. + + + Implements "direct-tcpip" SSH channel. + + + + + Initializes a new instance. + + The session. + The local channel number. + Size of the window. + Size of the packet. + + + + Called when channel is opened by the server. + + The remote channel number. + Initial size of the window. + Maximum size of the packet. + + + + Send message to open a channel. + + Message to send + + + + Called when channel failed to open. + + The reason code. + The description. + The language. + + + + Occurs when message is received. + + + + + Occurs when message received + + + + + Initializes a new instance. + + The session. + The local channel number. + Size of the window. + Size of the packet. + + + + Occurs as the forwarded port is being stopped. + + + + + Binds channel to remote host. + + + + + Closes the socket, hereby interrupting the blocking receive in . + + + + + Shuts down the socket. + + One of the values that specifies the operation that will no longer be allowed. + + + + Closes the channel, optionally waiting for the SSH_MSG_CHANNEL_CLOSE message to + be received from the server. + + true to wait for the SSH_MSG_CHANNEL_CLOSE message to be received from the server; otherwise, false. + + + + Called when channel data is received. + + The data. + + + + Called when channel is opened by the server. + + The remote channel number. + Initial size of the window. + Maximum size of the packet. + + + + Called when channel has no more data to receive. + + + + + Called whenever an unhandled occurs in causing + the message loop to be interrupted, or when an exception occurred processing a channel message. + + + + + Called when the server wants to terminate the connection immmediately. + + + The sender MUST NOT send or receive any data after this message, and + the recipient MUST NOT accept any data after receiving this message. + + + + + Gets the type of the channel. + + + The type of the channel. + + + + + Implements "forwarded-tcpip" SSH channel. + + + Implements "forwarded-tcpip" SSH channel. + + + + + Initializes a new instance. + + The session. + The local channel number. + Size of the window. + Size of the packet. + The remote channel number. + The window size of the remote party. + The maximum size of a data packet that we can send to the remote party. + + + + Initializes a new instance. + + The session. + The local channel number. + Size of the window. + Size of the packet. + The remote channel number. + The window size of the remote party. + The maximum size of a data packet that we can send to the remote party. + + + + Binds the channel to the specified endpoint. + + The endpoint to connect to. + The forwarded port for which the channel is opened. + + + + Occurs as the forwarded port is being stopped. + + + + + Shuts down the socket. + + One of the values that specifies the operation that will no longer be allowed. + + + + Closes the socket, hereby interrupting the blocking receive in . + + + + + Closes the channel, optionally waiting for the SSH_MSG_CHANNEL_CLOSE message to + be received from the server. + + true to wait for the SSH_MSG_CHANNEL_CLOSE message to be received from the server; otherwise, false. + + + + Called when channel data is received. + + The data. + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Gets the type of the channel. + + + The type of the channel. + + + + + Implements Session SSH channel. + + + + + Counts failed channel open attempts + + + + + Holds a value indicating whether the session semaphore has been obtained by the current + channel. + + + 0 when the session semaphore has not been obtained or has already been released, + and 1 when the session has been obtained and still needs to be released. + + + + + Wait handle to signal when response was received to open the channel + + + + + Initializes a new instance. + + The session. + The local channel number. + Size of the window. + Size of the packet. + + + + Opens the channel. + + + + + Called when channel is opened by the server. + + The remote channel number. + Initial size of the window. + Maximum size of the packet. + + + + Called when channel failed to open. + + The reason code. + The description. + The language. + + + + Called when channel is closed by the server. + + + + + Sends the pseudo terminal request. + + The environment variable. + The columns. + The rows. + The width. + The height. + The terminal mode values. + + true if request was successful; otherwise false. + + + + + Sends the X11 forwarding request. + + if set to true the it is single connection. + The protocol. + The cookie. + The screen number. + + true if request was successful; otherwise false. + + + + + Sends the environment variable request. + + Name of the variable. + The variable value. + + true if request was successful; otherwise false. + + + + + Sends the shell request. + + + true if request was successful; otherwise false. + + + + + Sends the exec request. + + The command. + + true if request was successful; otherwise false. + + + + + Sends the exec request. + + Length of the break. + + true if request was successful; otherwise false. + + + + + Sends the subsystem request. + + The subsystem. + + true if request was successful; otherwise false. + + + + + Sends the window change request. + + The columns. + The rows. + The width. + The height. + + true if request was successful; otherwise false. + + + + + Sends the local flow request. + + if set to true [client can do]. + + true if request was successful; otherwise false. + + + + + Sends the signal request. + + Name of the signal. + + true if request was successful; otherwise false. + + + + + Sends the exit status request. + + The exit status. + + true if request was successful; otherwise false. + + + + + Sends the exit signal request. + + Name of the signal. + if set to true [core dumped]. + The error message. + The language. + + true if request was successful; otherwise false. + + + + + Sends eow@openssh.com request. + + + true if request was successful; otherwise false. + + + + + Sends keepalive@openssh.com request. + + + true if request was successful; otherwise false. + + + + + Called when channel request was successful + + + + + Called when channel request failed. + + + + + Sends the channel open message. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Releases the session semaphore. + + + When the session semaphore has already been released, or was never obtained by + this instance, then this method does nothing. + + + + + Gets the type of the channel. + + + The type of the channel. + + + + + Lists channel types as defined by the protocol. + + + + + session + + + + + x11 + + + + + forwarded-tcpip + + + + + direct-tcpip + + + + + Holds information about key size and cipher to use + + + + + Initializes a new instance of the class. + + Size of the key. + The cipher. + + + + Gets the size of the key. + + + The size of the key. + + + + + Gets the cipher. + + + + + Implementation of ASCII Encoding + + + + + Initializes a new instance of the class. + + + + + Calculates the number of bytes produced by encoding a set of characters from the specified character array. + + The character array containing the set of characters to encode. + The index of the first character to encode. + The number of characters to encode. + + The number of bytes produced by encoding the specified characters. + + + is null. + + + or is less than zero.-or- and do not denote a valid range in . + + A fallback occurred (see Understanding Encodings for complete explanation)-and- is set to . + + + + Encodes a set of characters from the specified character array into the specified byte array. + + The character array containing the set of characters to encode. + The index of the first character to encode. + The number of characters to encode. + The byte array to contain the resulting sequence of bytes. + The index at which to start writing the resulting sequence of bytes. + + The actual number of bytes written into . + + + is null.-or- is null. + + + or or is less than zero.-or- and do not denote a valid range in .-or- is not a valid index in . + + + does not have enough capacity from to the end of the array to accommodate the resulting bytes. + + A fallback occurred (see Understanding Encodings for complete explanation)-and- is set to . + + + + Calculates the number of characters produced by decoding a sequence of bytes from the specified byte array. + + The byte array containing the sequence of bytes to decode. + The index of the first byte to decode. + The number of bytes to decode. + + The number of characters produced by decoding the specified sequence of bytes. + + + is null. + + + or is less than zero.-or- and do not denote a valid range in . + + A fallback occurred (see Understanding Encodings for complete explanation)-and- is set to . + + + + Decodes a sequence of bytes from the specified byte array into the specified character array. + + The byte array containing the sequence of bytes to decode. + The index of the first byte to decode. + The number of bytes to decode. + The character array to contain the resulting set of characters. + The index at which to start writing the resulting set of characters. + + The actual number of characters written into . + + + is null.-or- is null. + + + or or is less than zero.-or- and do not denote a valid range in .-or- is not a valid index in . + + + does not have enough capacity from to the end of the array to accommodate the resulting characters. + + A fallback occurred (see Understanding Encodings for complete explanation)-and- is set to . + + + + Calculates the maximum number of bytes produced by encoding the specified number of characters. + + The number of characters to encode. + + The maximum number of bytes produced by encoding the specified number of characters. + + + is less than zero. + + A fallback occurred (see Understanding Encodings for complete explanation)-and- is set to . + + + + Calculates the maximum number of characters produced by decoding the specified number of bytes. + + The number of bytes to decode. + + The maximum number of characters produced by decoding the specified number of bytes. + + + is less than zero. + + A fallback occurred (see Understanding Encodings for complete explanation)-and- is set to . + + + + Base class to encapsulates the results of an asynchronous operation. + + + + + Initializes a new instance of the class. + + The async callback. + The state. + + + + Marks asynchronous operation as completed. + + The exception. + if set to true [completed synchronously]. + + + + Waits until the asynchronous operation completes, and then returns. + + + + + Gets or sets a value indicating whether EndInvoke has been called on the current AsyncResult. + + + true if EndInvoke has been called on the current AsyncResult; otherwise, false. + + + + + Gets a user-defined object that qualifies or contains information about an asynchronous operation. + + A user-defined object that qualifies or contains information about an asynchronous operation. + + + + Gets a value that indicates whether the asynchronous operation completed synchronously. + + true if the asynchronous operation completed synchronously; otherwise, false. + + + + Gets a that is used to wait for an asynchronous operation to complete. + + A that is used to wait for an asynchronous operation to complete. + + + + Gets a value that indicates whether the asynchronous operation has completed. + + true if the operation is complete; otherwise, false. + + + + Base class to encapsulates the results of an asynchronous operation that returns result. + + The type of the result. + + + + Initializes a new instance of the class. + + The async callback. + The state. + + + + Marks asynchronous operation as completed. + + The result. + if set to true [completed synchronously]. + + + + Waits until the asynchronous operation completes, and then returns the value generated by the asynchronous operation. + + Invocation result + + + + Provides data for event. + + + + + Base class for authentication events. + + + + + Initializes a new instance of the class. + + The username. + + + + Gets the username. + + + + + Initializes a new instance of the class. + + The username. + Banner message. + Banner language. + + + + Gets banner message. + + + + + Gets banner language. + + + + + Provides data for event. + + + + + Initializes a new instance of the class. + + The username. + + + + Gets or sets the new password. + + + The new password. + + + + + Provides prompt information when is raised + + + + + Initializes a new instance of the class. + + The sequence id. + if set to true the user input should be echoed. + The request. + + + + Gets the prompt sequence id. + + + + + Gets or sets a value indicating whether the user input should be echoed as characters are typed. + + + true if the user input should be echoed as characters are typed; otherwise, false. + + + + + Gets server information request. + + + + + Gets or sets server information response. + + + The response. + + + + + Provides data for event. + + + + + Initializes a new instance of the class. + + The username. + The instruction. + The language. + The information request prompts. + + + + Gets prompt language. + + + + + Gets prompt instruction. + + + + + Gets server information request prompts. + + + + + Gets the list of authentication methods that were previously executed. + + + The list of authentication methods that were previously executed. + + + + + Gets the list of authentications methods that failed. + + + The list of authentications methods that failed. + + + + + Gets the list of supported authentication methods. + + + The list of supported authentication methods. + + + + + Represents an arbitrarily large signed integer. + + + + + Initializes a new instance of the struct. + + The sign. + The data. + + + + Initializes a new instance of the struct. + + The value. + + + + Initializes a new instance of the struct. + + The value. + + + + Initializes a new instance of the struct. + + The value. + + + + Initializes a new instance of the struct. + + The value. + + + + Initializes a new instance of the struct. + + The value. + + + + Initializes a new instance of the struct. + + The value. + + + + Initializes a new instance of the struct. + + The value. + + + + Initializes a new instance of the struct. + + The value. + + + + Defines an explicit conversion of a System.Numerics.BigInteger object to a 32-bit signed integer value. + + The value to convert to a 32-bit signed integer. + + An object that contains the value of the value parameter. + + + + + Defines an explicit conversion of a System.Numerics.BigInteger object to an unsigned 32-bit integer value. + + The value to convert to an unsigned 32-bit integer. + + An object that contains the value of the value parameter. + + + + + Defines an explicit conversion of a System.Numerics.BigInteger object to a 16-bit signed integer value. + + The value to convert to a 16-bit signed integer. + + An object that contains the value of the value parameter. + + + + + Defines an explicit conversion of a System.Numerics.BigInteger object to an unsigned 16-bit integer value. + + The value to convert to an unsigned 16-bit integer. + + An object that contains the value of the value parameter + + + + + Defines an explicit conversion of a System.Numerics.BigInteger object to an unsigned byte value. + + The value to convert to a System.Byte. + + An object that contains the value of the value parameter. + + + + + Defines an explicit conversion of a System.Numerics.BigInteger object to a signed 8-bit value. + + The value to convert to a signed 8-bit value. + + An object that contains the value of the value parameter. + + + + + Defines an explicit conversion of a System.Numerics.BigInteger object to a 64-bit signed integer value. + + The value to convert to a 64-bit signed integer. + + An object that contains the value of the value parameter. + + + + + Defines an explicit conversion of a System.Numerics.BigInteger object to an unsigned 64-bit integer value. + + The value to convert to an unsigned 64-bit integer. + + An object that contains the value of the value parameter. + + + + + Defines an explicit conversion of a System.Numerics.BigInteger object to a value. + + The value to convert to a . + + An object that contains the value of the value parameter. + + + + + Defines an explicit conversion of a System.Numerics.BigInteger object to a single-precision floating-point value. + + The value to convert to a single-precision floating-point value. + + An object that contains the closest possible representation of the value parameter. + + + + + Defines an explicit conversion of a System.Numerics.BigInteger object to a value. + + The value to convert to a . + + An object that contains the value of the value parameter. + + + + + Defines an implicit conversion of a signed 32-bit integer to a System.Numerics.BigInteger value. + + The value to convert to a System.Numerics.BigInteger. + + An object that contains the value of the value parameter. + + + + + Defines an implicit conversion of a 32-bit unsigned integer to a System.Numerics.BigInteger value. + + The value to convert to a System.Numerics.BigInteger. + + An object that contains the value of the value parameter. + + + + + Defines an implicit conversion of a signed 16-bit integer to a System.Numerics.BigInteger value. + + The value to convert to a System.Numerics.BigInteger. + + An object that contains the value of the value parameter. + + + + + Defines an implicit conversion of a 16-bit unsigned integer to a System.Numerics.BigInteger value. + + The value to convert to a System.Numerics.BigInteger. + + An object that contains the value of the value parameter. + + + + + Defines an implicit conversion of an unsigned byte to a System.Numerics.BigInteger value. + + The value to convert to a System.Numerics.BigInteger. + + An object that contains the value of the value parameter. + + + + + Defines an implicit conversion of an 8-bit signed integer to a System.Numerics.BigInteger value. + + The value to convert to a System.Numerics.BigInteger. + + An object that contains the value of the value parameter. + + + + + Defines an implicit conversion of a signed 64-bit integer to a System.Numerics.BigInteger value. + + The value to convert to a System.Numerics.BigInteger. + + An object that contains the value of the value parameter. + + + + + Defines an implicit conversion of a 64-bit unsigned integer to a System.Numerics.BigInteger value. + + The value to convert to a System.Numerics.BigInteger. + + An object that contains the value of the value parameter. + + + + + Defines an explicit conversion of a value to a System.Numerics.BigInteger value. + + The value to convert to a System.Numerics.BigInteger. + + An object that contains the value of the value parameter. + + + + + Defines an explicit conversion of a object to a System.Numerics.BigInteger value. + + The value to convert to a System.Numerics.BigInteger. + + An object that contains the value of the value parameter. + + + + + Defines an explicit conversion of a object to a System.Numerics.BigInteger value. + + The value to convert to a System.Numerics.BigInteger. + + An object that contains the value of the value parameter. + + + + + Adds the values of two specified objects. + + The first value to add. + The second value to add. + + The sum of left and right. + + + + + Subtracts a value from another value. + + The value to subtract from (the minuend). + The value to subtract (the subtrahend). + + The result of subtracting right from left. + + + + + Multiplies two specified values. + + The first value to multiply. + The second value to multiply. + + The product of left and right. + + + + + Divides a specified value by another specified value by using integer division. + + The value to be divided. + The value to divide by. + + The integral result of the division. + + + + + Returns the remainder that results from division with two specified values. + + The value to be divided. + The value to divide by. + + The remainder that results from the division. + + + + + Negates a specified BigInteger value. + + The value to negate. + + The result of the value parameter multiplied by negative one (-1). + + + + + Returns the value of the operand. (The sign of the operand is unchanged.) + + An integer value. + + The value of the value operand. + + + + + Increments a value by 1. + + The value to increment. + + The value of the value parameter incremented by 1. + + + + + Decrements a value by 1. + + The value to decrement. + + The value of the value parameter decremented by 1. + + + + + Performs a bitwise And operation on two values. + + The first value. + The second value. + + The result of the bitwise And operation. + + + + + Performs a bitwise Or operation on two values. + + The first value. + The second value. + + The result of the bitwise Or operation. + + + + + Performs a bitwise exclusive Or (XOr) operation on two values. + + The first value. + The second value. + + The result of the bitwise Or operation. + + + + + Returns the bitwise one's complement of a value. + + An integer value. + + The bitwise one's complement of value. + + + + + Shifts a value a specified number of bits to the left. + + The value whose bits are to be shifted. + The number of bits to shift value to the left. + + A value that has been shifted to the left by the specified number of bits. + + + + + Shifts a System.Numerics.BigInteger value a specified number of bits to the right. + + The value whose bits are to be shifted. + The number of bits to shift value to the right. + + A value that has been shifted to the right by the specified number of bits. + + + + + Returns a value that indicates whether a value is less than another value. + + The first value to compare. + The second value to compare. + + true if left is less than right; otherwise, false. + + + + + Returns a value that indicates whether a value is less than a 64-bit signed integer. + + The first value to compare. + The second value to compare. + + true if left is less than right; otherwise, false. + + + + + Returns a value that indicates whether a 64-bit signed integer is less than a value. + + The first value to compare. + The second value to compare. + + true if left is less than right; otherwise, false. + + + + + Returns a value that indicates whether a value is less than a 64-bit unsigned integer. + + The first value to compare. + The second value to compare. + + true if left is less than right; otherwise, false. + + + + + Returns a value that indicates whether a 64-bit unsigned integer is less than a value. + + The first value to compare. + The second value to compare. + + true if left is less than right; otherwise, false. + + + + + Returns a value that indicates whether a System.Numerics.BigInteger value is less than or equal to another System.Numerics.BigInteger value. + + The first value to compare. + The second value to compare. + + true if left is less than or equal to right; otherwise, false. + + + + + Returns a value that indicates whether a System.Numerics.BigInteger value is less than or equal to a 64-bit signed integer. + + The first value to compare. + The second value to compare. + + true if left is less than or equal to right; otherwise, false. + + + + + Returns a value that indicates whether a 64-bit signed integer is less than or equal to a System.Numerics.BigInteger value. + + The first value to compare. + The second value to compare. + + true if left is less than or equal to right; otherwise, false. + + + + + Returns a value that indicates whether a System.Numerics.BigInteger value is less than or equal to a 64-bit unsigned integer. + + The first value to compare. + The second value to compare. + + true if left is less than or equal to right; otherwise, false. + + + + + Returns a value that indicates whether a 64-bit unsigned integer is less than or equal to a System.Numerics.BigInteger value. + + The first value to compare. + The second value to compare. + + true if left is less than or equal to right; otherwise, false. + + + + + Returns a value that indicates whether a System.Numerics.BigInteger value is greater than another System.Numerics.BigInteger value. + + The first value to compare. + The second value to compare. + + true if left is greater than right; otherwise, false. + + + + + Returns a value that indicates whether a System.Numerics.BigInteger is greater than a 64-bit signed integer value. + + The first value to compare. + The second value to compare. + + true if left is greater than right; otherwise, false. + + + + + Returns a value that indicates whether a 64-bit signed integer is greater than a System.Numerics.BigInteger value. + + The first value to compare. + The second value to compare. + + true if left is greater than right; otherwise, false. + + + + + Returns a value that indicates whether a System.Numerics.BigInteger value is greater than a 64-bit unsigned integer. + + The first value to compare. + The second value to compare. + + true if left is greater than right; otherwise, false. + + + + + Returns a value that indicates whether a System.Numerics.BigInteger value is greater than a 64-bit unsigned integer. + + The first value to compare. + The second value to compare. + + true if left is greater than right; otherwise, false. + + + + + Returns a value that indicates whether a System.Numerics.BigInteger value is greater than or equal to another System.Numerics.BigInteger value. + + The first value to compare. + The second value to compare. + + true if left is greater than or equal right; otherwise, false. + + + + + Returns a value that indicates whether a System.Numerics.BigInteger value is greater than or equal to a 64-bit signed integer value. + + The first value to compare. + The second value to compare. + + true if left is greater than or equal right; otherwise, false. + + + + + Returns a value that indicates whether a 64-bit signed integer is greater than or equal to a System.Numerics.BigInteger value. + + The first value to compare. + The second value to compare. + + true if left is greater than or equal right; otherwise, false. + + + + + Returns a value that indicates whether a System.Numerics.BigInteger value is greater than or equal to a 64-bit unsigned integer value. + + The first value to compare. + The second value to compare. + + true if left is greater than or equal right; otherwise, false. + + + + + Returns a value that indicates whether a 64-bit unsigned integer is greater than or equal to a System.Numerics.BigInteger value. + + The first value to compare. + The second value to compare. + + true if left is greater than or equal right; otherwise, false. + + + + + Returns a value that indicates whether the values of two System.Numerics.BigInteger objects are equal. + + The first value to compare. + The second value to compare. + + true if the left and right parameters have the same value; otherwise, false. + + + + + Returns a value that indicates whether a System.Numerics.BigInteger value and a signed long integer value are equal. + + The first value to compare. + The second value to compare. + + true if the left and right parameters have the same value; otherwise, false. + + + + + Returns a value that indicates whether a signed long integer value and a System.Numerics.BigInteger value are equal. + + The first value to compare. + The second value to compare. + + true if the left and right parameters have the same value; otherwise, false. + + + + + Returns a value that indicates whether a System.Numerics.BigInteger value and an unsigned long integer value are equal. + + The first value to compare. + The second value to compare. + + true if the left and right parameters have the same value; otherwise, false. + + + + + Returns a value that indicates whether an unsigned long integer value and a System.Numerics.BigInteger value are equal. + + The first value to compare. + The second value to compare. + + true if the left and right parameters have the same value; otherwise, false. + + + + + Returns a value that indicates whether two objects have different values. + + The first value to compare. + The second value to compare. + + true if left and right are not equal; otherwise, false. + + + + + Returns a value that indicates whether a value and a 64-bit signed integer are not equal. + + The first value to compare. + The second value to compare. + + true if left and right are not equal; otherwise, false. + + + + + Returns a value that indicates whether a 64-bit signed integer and a value are not equal. + + The first value to compare. + The second value to compare. + + true if left and right are not equal; otherwise, false. + + + + + Returns a value that indicates whether a value and a 64-bit unsigned integer are not equal. + + The first value to compare. + The second value to compare. + + true if left and right are not equal; otherwise, false. + + + + + Returns a value that indicates whether a 64-bit unsigned integer and a value are not equal. + + The first value to compare. + The second value to compare. + + true if left and right are not equal; otherwise, false. + + + + + Gets the absolute value of a System.Numerics.BigInteger object. + + A number. + The absolute value of value. + + + + Adds two System.Numerics.BigInteger values and returns the result. + + The first value to add. + The second value to add. + The sum of left and right. + + + + 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. + + An object to compare with this instance. + + A value that indicates the relative order of the objects being compared. The return value has these meanings: Value Meaning Less than zero This instance is less than . Zero This instance is equal to . Greater than zero This instance is greater than . + + + is not the same type as this instance. + + + + Compares this instance to a second System.Numerics.BigInteger and returns + an integer that indicates whether the value of this instance is less than, + equal to, or greater than the value of the specified object. + + The object to compare. + + A signed integer value that indicates the relationship of this instance to + other, as shown in the following table.Return valueDescriptionLess than zeroThe + current instance is less than other.ZeroThe current instance equals other.Greater + than zeroThe current instance is greater than other. + + + + + Compares this instance to an unsigned 64-bit integer and returns an integer + that indicates whether the value of this instance is less than, equal to, + or greater than the value of the unsigned 64-bit integer. + + The unsigned 64-bit integer to compare. + A signed integer that indicates the relative value of this instance and other, + as shown in the following table.Return valueDescriptionLess than zeroThe + current instance is less than other.ZeroThe current instance equals other.Greater + than zeroThe current instance is greater than other. + + + + Generates random BigInteger number + + Length of random number in bits. + Big random number. + + + + Divides one System.Numerics.BigInteger value by another and returns the result. + + The value to be divided. + The value to divide by. + The quotient of the division. + + + + Divides one System.Numerics.BigInteger value by another, returns the result, and returns the remainder in an output parameter. + + The value to be divided. + The value to divide by. + When this method returns, contains a System.Numerics.BigInteger value that + represents the remainder from the division. This parameter is passed uninitialized. + The quotient of the division. + + + + Returns a value that indicates whether the current instance and a specified System.Numerics.BigInteger object have the same value. + + The object to compare. + + true if this System.Numerics.BigInteger object and other have the same value; otherwise, false. + + + + + Returns a value that indicates whether the current instance and a signed 64-bit integer have the same value. + + The signed 64-bit integer value to compare. + true if the signed 64-bit integer and the current instance have the same value; otherwise, false. + + + + Returns a value that indicates whether the current instance and a specified object have the same value. + + The object to compare. + + true if the obj parameter is a System.Numerics.BigInteger object or a type + capable of implicit conversion to a System.Numerics.BigInteger value, and + its value is equal to the value of the current System.Numerics.BigInteger + object; otherwise, false. + + + + + Returns a value that indicates whether the current instance and an unsigned 64-bit integer have the same value. + + The unsigned 64-bit integer to compare. + true if the current instance and the unsigned 64-bit integer have the same value; otherwise, false. + + + + Returns the hash code for the current System.Numerics.BigInteger object. + + + A 32-bit signed integer hash code. + + + + + Finds the greatest common divisor of two System.Numerics.BigInteger values. + + The first value. + The second value. + The greatest common divisor of left and right. + + + + Returns the logarithm of a specified number in a specified base. + + A number whose logarithm is to be found. + The base of the logarithm. + The base baseValue logarithm of value, as shown in the table in the Remarks section. + + + + Returns the natural (base e) logarithm of a specified number. + + The number whose logarithm is to be found. + The natural (base e) logarithm of value, as shown in the table in the Remarks section. + + + + Returns the base 10 logarithm of a specified number. + + A number whose logarithm is to be found. + The base 10 logarithm of value, as shown in the table in the Remarks section. + + + + Returns the larger of two System.Numerics.BigInteger values. + + The first value to compare. + The second value to compare. + The left or right parameter, whichever is larger. + + + + Returns the smaller of two System.Numerics.BigInteger values. + + The first value to compare. + The second value to compare. + The left or right parameter, whichever is smaller. + + + + Performs modulus division on a number raised to the power of another number. + + The number to raise to the exponent power. + The exponent to raise value by. + The value to divide valueexponent by. + The remainder after dividing valueexponent by modulus. + + + + Mods the inverse. + + The bi. + The modulus. + Modulus inverted number. + + + + Returns positive remainder that results from division with two specified values. + + The value to be divided. + The value to divide by. + + Positive remainder that results from the division. + + + + + Returns the product of two System.Numerics.BigInteger values. + + The first number to multiply. + The second number to multiply. + The product of the left and right parameters. + + + + Negates a specified System.Numerics.BigInteger value. + + The value to negate. + The result of the value parameter multiplied by negative one (-1). + + + + Converts the string representation of a number in a specified style and culture-specific format to its equivalent. + + A string that contains a number to convert. + A bitwise combination of the enumeration values that specify the permitted format of value. + An object that provides culture-specific formatting information about value. + Parsed number + + + + Converts the string representation of a number in a specified culture-specific format to its System.Numerics.BigInteger equivalent. + + A string that contains a number to convert. + An object that provides culture-specific formatting information about value. + A value that is equivalent to the number specified in the value parameter. + + + + Converts the string representation of a number in a specified style to its System.Numerics.BigInteger equivalent. + + A string that contains a number to convert. + A bitwise combination of the enumeration values that specify the permitted format of value. + A value that is equivalent to the number specified in the value parameter. + + + + Raises a System.Numerics.BigInteger value to the power of a specified value. + + The number to raise to the exponent power. + The exponent to raise value by. + The result of raising value to the exponent power. + + + + Performs integer division on two System.Numerics.BigInteger values and returns the remainder. + + The value to be divided. + The value to divide by. + The remainder after dividing dividend by divisor. + + + + Subtracts one System.Numerics.BigInteger value from another and returns the result. + + The value to subtract from (the minuend). + The value to subtract (the subtrahend). + The result of subtracting right from left. + + + + Converts a System.Numerics.BigInteger value to a byte array. + + The value of the current System.Numerics.BigInteger object converted to an array of bytes. + + + + Converts the numeric value of the current System.Numerics.BigInteger object to its equivalent string representation. + + + The string representation of the current System.Numerics.BigInteger value. + + + + + Converts the numeric value of the current System.Numerics.BigInteger object + to its equivalent string representation by using the specified culture-specific + formatting information. + + An object that supplies culture-specific formatting information. + + The string representation of the current System.Numerics.BigInteger value + in the format specified by the provider parameter. + + + + + Converts the numeric value of the current System.Numerics.BigInteger object + to its equivalent string representation by using the specified format. + + A standard or custom numeric format string. + + The string representation of the current System.Numerics.BigInteger value + in the format specified by the format parameter. + + + + + Converts the numeric value of the current System.Numerics.BigInteger object + to its equivalent string representation by using the specified format and + culture-specific format information. + + A standard or custom numeric format string. + An object that supplies culture-specific formatting information. + + The string representation of the current System.Numerics.BigInteger value + as specified by the format and provider parameters. + + + + + Tries to convert the string representation of a number in a specified style + and culture-specific format to its System.Numerics.BigInteger equivalent, + and returns a value that indicates whether the conversion succeeded. + + The string representation of a number. The string is interpreted using the style specified by style. + A bitwise combination of enumeration values that indicates the style elements + that can be present in value. A typical value to specify is System.Globalization.NumberStyles.Integer. + An object that supplies culture-specific formatting information about value. + When this method returns, contains the System.Numerics.BigInteger equivalent + to the number that is contained in value, or System.Numerics.BigInteger.Zero + if the conversion failed. The conversion fails if the value parameter is + null or is not in a format that is compliant with style. This parameter is + passed uninitialized. + true if the value parameter was converted successfully; otherwise, false. + + + + Tries to convert the string representation of a number to its System.Numerics.BigInteger + equivalent, and returns a value that indicates whether the conversion succeeded. + + The string representation of a number. + When this method returns, contains the System.Numerics.BigInteger equivalent + to the number that is contained in value, or zero (0) if the conversion fails. + The conversion fails if the value parameter is null or is not of the correct + format. This parameter is passed uninitialized. + true if value was converted successfully; otherwise, false. + + + + Compares this instance to a signed 64-bit integer and returns an integer + that indicates whether the value of this instance is less than, equal to, + or greater than the value of the signed 64-bit integer. + + The signed 64-bit integer to compare. + A signed integer value that indicates the relationship of this instance to + other, as shown in the following table.Return valueDescriptionLess than zeroThe + current instance is less than other.ZeroThe current instance equals other.Greater + than zero.The current instance is greater than other. + + + + Compares two System.Numerics.BigInteger values and returns an integer that + indicates whether the first value is less than, equal to, or greater than the second value. + + The first value to compare. + The second value to compare. + A signed integer that indicates the relative values of left and right, + as shown in the following table.ValueConditionLess than zeroleft is less than right.Zeroleft + equals right.Greater than zeroleft is greater than right. + + + + Populations the count. + + The x. + Returns the number of bits set in x + + + + Returns the 0-based index of the most significant set bit + + The word. + 0 if no bit is set + + + + Gets number of bits used by the number. + + + The number of the bit used. + + + + + Indicates whether the value of the current System.Numerics.BigInteger object is an even number. + + + true if the value of the System.Numerics.BigInteger object is an even number; otherwise, false. + + + + + Indicates whether the value of the current System.Numerics.BigInteger object is System.Numerics.BigInteger.One. + + + true if the value of the System.Numerics.BigInteger object is System.Numerics.BigInteger.One; otherwise, false. + + + + + Indicates whether the value of the current System.Numerics.BigInteger object is a power of two. + + + true if the value of the System.Numerics.BigInteger object is a power of two; otherwise, false. + + + + + Indicates whether the value of the current System.Numerics.BigInteger object is System.Numerics.BigInteger.Zero. + + + true if the value of the System.Numerics.BigInteger object is System.Numerics.BigInteger.Zero; otherwise, false. + + + + + Gets a value that represents the number negative one (-1). + + + + + Gets a value that represents the number one (1). + + + + + Gets a number that indicates the sign (negative, positive, or zero) of the current System.Numerics.BigInteger object. + + + + + Gets a value that represents the number 0 (zero). + + + + + Provides data for event and events. + + + + + Base class for all channel related events. + + + + + Initializes a new instance of the class. + + The channel number. + + + + Gets the channel number. + + + + + Initializes a new instance of the class. + + Channel number. + Channel data. + + + + Initializes a new instance of the class. + + Channel number. + Channel data. + Channel data type code. + + + + Gets channel data. + + + + + Gets the data type code. + + + + + Provides data for event. + + + + + Initializes a new instance of the class. + + The remote channel number. + The initial window size. + The maximum packet size. + + + + Gets the initial size of the window. + + + The initial size of the window. + + + + + Gets the maximum size of the packet. + + + The maximum size of the packet. + + + + + Provides data for event. + + + + + Initializes a new instance of the class. + + Channel number. + Failure reason code. + Failure description. + Failure language. + + + + Gets failure reason code. + + + + + Gets failure description. + + + + + Gets failure language. + + + + + Provides data for event. + + + + + Initializes a new instance of the class. + + Request information. + + + + Gets request information. + + + + + Collection of different extension method specific for .NET 4.0 + + + Collection of different extension method + + + + + Determines whether [is null or white space] [the specified value]. + + The value. + + true if [is null or white space] [the specified value]; otherwise, false. + + + + + Checks whether a collection is the same as another collection + + The current instance object + The collection to compare with + The comparer object to use to compare each item in the collection. If null uses EqualityComparer(T).Default + True if the two collections contain all the same items in the same order + + + + Checks whether a collection is the same as another collection + + The current instance object + The collection to compare with + True if the two collections contain all the same items in the same order + + + + Prints out + + The bytes. + + + + Trims the leading zero from bytes array. + + The data. + Data without leading zeros. + + + + Creates an instance of the specified type using that type's default constructor. + + The type to create. + Type of the instance to create. + A reference to the newly created object. + + + + Returns the specified 16-bit unsigned integer value as an array of bytes. + + The number to convert. + An array of bytes with length 2. + + + + Returns the specified 32-bit unsigned integer value as an array of bytes. + + The number to convert. + An array of bytes with length 4. + + + + Returns the specified 64-bit unsigned integer value as an array of bytes. + + The number to convert. + An array of bytes with length 8. + + + + Returns the specified 64-bit signed integer value as an array of bytes. + + The number to convert. + An array of bytes with length 8. + + + + The exception that is thrown when SCP error occurred. + + + + + The exception that is thrown when SSH exception occurs. + + + The exception that is thrown when SSH exception occurs. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The message. + + + + Initializes a new instance of the class. + + The message. + The inner. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + + The class name is null or is zero (0). + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The message. + + + + Initializes a new instance of the class. + + The message. + The inner exception. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Provides data for the HostKeyReceived event. + + + + + Initializes a new instance of the class. + + The host. + + + + Gets or sets a value indicating whether host key can be trusted. + + + true if host key can be trusted; otherwise, false. + + + + + Gets the host key. + + + + + Gets the host key name. + + + + + Gets the finger print. + + + + + Gets the length of the key in bits. + + + The length of the key in bits. + + + + + The exception that is thrown when there is something wrong with the server capabilities. + + + The exception that is thrown when there is something wrong with the server capabilities. + + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The message. + + + + Initializes a new instance of the class. + + The message. + The inner exception. + + + + Base class for DER encoded data. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + DER encoded data. + + + + Encodes written data as DER byte array. + + DER Encoded array. + + + + Reads next mpint data type from internal buffer. + + mpint read. + + + + Reads next int data type from internal buffer. + + int read. + + + + Writes BOOLEAN data into internal buffer. + + UInt32 data to write. + + + + Writes UInt32 data into internal buffer. + + UInt32 data to write. + + + + Writes INTEGER data into internal buffer. + + BigInteger data to write. + + + + Writes OCTETSTRING data into internal buffer. + + The data. + + + + Writes OBJECTIDENTIFIER data into internal buffer. + + The identifier. + + + + Writes NULL data into internal buffer. + + + + + Writes DerData data into internal buffer. + + DerData data to write. + + + + Gets a value indicating whether end of data is reached. + + + true if end of data is reached; otherwise, false. + + + + + Provides data for the ErrorOccured events. + + + + + Initializes a new instance of the class. + + An System.Exception that represents the error that occurred. + + + + Gets the System.Exception that represents the error that occurred. + + + + + Describes object identifier for DER encoding + + + + + Initializes a new instance of the class. + + The identifiers. + + + + Gets the object identifier. + + + + + PipeStream is a thread-safe read/write data stream for use between two threads in a + single-producer/single-consumer type problem. + + 2006/10/13 1.0 + Update on 2008/10/9 1.1 - uses Monitor instead of Manual Reset events for more elegant synchronicity. + + Copyright (c) 2006 James Kolpack (james dot kolpack at google mail) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and + associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT + OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. + + + + + Queue of bytes provides the datastructure for transmitting from an + input stream to an output stream. + + Possible more effecient ways to accomplish this. + + + + Indicates that the input stream has been flushed and that + all remaining data should be written to the output stream. + + + + + Maximum number of bytes to store in the buffer. + + + + + Setting this to true will cause Read() to block if it appears + that it will run out of data. + + + + + When overridden in a derived class, clears all buffers for this stream and causes any buffered data to be written to the underlying device. + + + An I/O error occurs. 2 + + + + When overridden in a derived class, sets the position within the current stream. + + + The new position within the current stream. + + A byte offset relative to the origin parameter. + A value of type indicating the reference point used to obtain the new position. + An I/O error occurs. + The stream does not support seeking, such as if the stream is constructed from a pipe or console output. + Methods were called after the stream was closed. 1 + + + + When overridden in a derived class, sets the length of the current stream. + + The desired length of the current stream in bytes. + The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output. + An I/O error occurs. + Methods were called after the stream was closed. 2 + + + + When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read. + + + The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached. + + The zero-based byte offset in buffer at which to begin storing the data read from the current stream. + The maximum number of bytes to be read from the current stream. + An array of bytes. When this method returns, the buffer contains the specified byte array with the values between offset and (offset + count - 1) replaced by the bytes read from the current source. + The sum of offset and count is larger than the buffer length. + Methods were called after the stream was closed. + The stream does not support reading. + buffer is null. + An I/O error occurs. + offset or count is negative. 1 + + + + Returns true if there are + + The count. + True if data available; otherwisefalse. + + + + When overridden in a derived class, writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written. + + The zero-based byte offset in buffer at which to begin copying bytes to the current stream. + The number of bytes to be written to the current stream. + An array of bytes. This method copies count bytes from buffer to the current stream. + An I/O error occurs. + The stream does not support writing. + Methods were called after the stream was closed. + buffer is null. + The sum of offset and count is greater than the buffer length. + offset or count is negative. 1 + + + + Gets or sets the maximum number of bytes to store in the buffer. + + The length of the max buffer. + + + + Gets or sets a value indicating whether to block last read method before the buffer is empty. + When true, Read() will block until it can fill the passed in buffer and count. + When false, Read() will not block, returning all the available buffer data. + + + Setting to true will remove the possibility of ending a stream reader prematurely. + + + true if block last read method before the buffer is empty; otherwise, false. + + + + + When overridden in a derived class, gets a value indicating whether the current stream supports reading. + + + true if the stream supports reading; otherwise, false. + + 1 + + + + When overridden in a derived class, gets a value indicating whether the current stream supports seeking. + + + true if the stream supports seeking; otherwise, false. + + 1 + + + + When overridden in a derived class, gets a value indicating whether the current stream supports writing. + + + true if the stream supports writing; otherwise, false. + + 1 + + + + When overridden in a derived class, gets the length in bytes of the stream. + + + A long value representing the length of the stream in bytes. + + + A class derived from Stream does not support seeking. + Methods were called after the stream was closed. 1 + + + + When overridden in a derived class, gets or sets the position within the current stream. + + + The current position within the stream. + + An I/O error occurs. + The stream does not support seeking. + Methods were called after the stream was closed. 1 + + + + Provides data for event. + + + + + Initializes a new instance of the class. + + The host. + The port. + is null. + is not within and . + + + + Gets request originator host. + + + + + Gets request originator port. + + + + + Provides data for the Downloading event. + + + + + Initializes a new instance of the class. + + The downloaded filename. + The downloaded file size. + The number of downloaded bytes so far. + + + + Gets the downloaded filename. + + + + + Gets the downloaded file size. + + + + + Gets number of downloaded bytes so far. + + + + + The exception that is thrown when SCP error occurred. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The message. + + + + Initializes a new instance of the class. + + The message. + The inner exception. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Provides data for the Uploading event. + + + + + Initializes a new instance of the class. + + The uploaded filename. + The the uploaded file size. + The number of uploaded bytes so far. + + + + Gets the uploaded filename. + + + + + Gets the uploaded file size. + + + + + Gets number of uploaded bytes so far. + + + + + Light implementation of SemaphoreSlim. + + + + + Initializes a new instance of the class, specifying + the initial number of requests that can be granted concurrently. + + The initial number of requests for the semaphore that can be granted concurrently. + is a negative number. + + + + Exits the once. + + The previous count of the . + + + + Exits the a specified number of times. + + The number of times to exit the semaphore. + The previous count of the . + + + + Blocks the current thread until it can enter the . + + + + + Gets the current count of the . + + + + + The exception that is thrown when file or directory is not found. + + + The exception that is thrown when file or directory is not found. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The message. + + + + Initializes a new instance of the class. + + The message. + The inner exception. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + The exception that is thrown when operation permission is denied. + + + The exception that is thrown when operation permission is denied. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The message. + + + + Initializes a new instance of the class. + + The message. + The inner exception. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Provides data for Shell DataReceived event + + + + + Initializes a new instance of the class. + + The data. + + + + Initializes a new instance of the class. + + The line. + + + + Gets the data. + + + + + Gets the line data. + + + + + The exception that is thrown when authentication failed. + + + The exception that is thrown when authentication failed. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The message. + + + + Initializes a new instance of the class. + + The message. + The inner exception. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + The exception that is thrown when connection was terminated. + + + The exception that is thrown when connection was terminated. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The message. + + + + Initializes a new instance of the class. + + The message. + The disconnect reason code. + + + + Initializes a new instance of the class. + + The message. + The disconnect reason code. + The inner. + + + + Initializes a new instance of the class. + + The message. + The inner exception. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Gets the disconnect reason if provided by the server or client. Otherwise None. + + + + + Base ssh data serialization type + + + + + Data byte array that hold message unencrypted data + + + + + Gets data bytes array + + Byte array representation of data structure. + + + + Loads data from specified bytes. + + Bytes array. + is null. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Loads data bytes into internal buffer. + + The bytes. + is null. + + + + Resets internal data reader index. + + + + + Reads all data left in internal buffer at current position. + + An array of bytes containing the remaining data in the internal buffer. + + + + Reads next specified number of bytes data type from internal buffer. + + Number of bytes to read. + An array of bytes that was read from the internal buffer. + is greater than the internal buffer size. + + + + Reads next byte data type from internal buffer. + + Byte read. + + + + Reads next boolean data type from internal buffer. + + Boolean read. + + + + Reads next uint16 data type from internal buffer. + + uint16 read + + + + Reads next uint32 data type from internal buffer. + + uint32 read + + + + Reads next uint64 data type from internal buffer. + + uint64 read + + + + Reads next int64 data type from internal buffer. + + int64 read + + + + Reads next string data type from internal buffer. + + string read + + + + Reads next string data type from internal buffer. + + string read + + + + Reads next string data type from internal buffer. + + string read + + + + Reads next string data type from internal buffer. + + string read + + + + Reads next mpint data type from internal buffer. + + mpint read. + + + + Reads next name-list data type from internal buffer. + + String array or read data.. + + + + Reads next extension-pair data type from internal buffer. + + Extensions pair dictionary. + + + + Writes bytes array data into internal buffer. + + Byte array data to write. + is null. + + + + Writes byte data into internal buffer. + + Byte data to write. + + + + Writes boolean data into internal buffer. + + Boolean data to write. + + + + Writes uint16 data into internal buffer. + + uint16 data to write. + + + + Writes uint32 data into internal buffer. + + uint32 data to write. + + + + Writes uint64 data into internal buffer. + + uint64 data to write. + + + + Writes int64 data into internal buffer. + + int64 data to write. + + + + Writes string data into internal buffer as ASCII. + + string data to write. + + + + Writes string data into internal buffer using default encoding. + + string data to write. + is null. + + + + Writes string data into internal buffer using the specified encoding. + + string data to write. + The character encoding to use. + is null. + is null. + + + + Writes string data into internal buffer. + + string data to write. + is null. + + + + Writes mpint data into internal buffer. + + mpint data to write. + + + + Writes name-list data into internal buffer. + + name-list data to write. + + + + Writes extension-pair data into internal buffer. + + extension-pair data to write. + + + + Gets a value indicating whether all data from the buffer has been read. + + + true if this instance is end of data; otherwise, false. + + + + + Gets the index that represents zero in current data type. + + + The index of the zero reader. + + + + + The exception that is thrown when operation is timed out. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The message. + + + + Initializes a new instance of the class. + + The message. + The inner exception. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + The exception that is thrown when pass phrase for key file is empty or null + + + The exception that is thrown when pass phrase for key file is empty or null + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The message. + + + + Initializes a new instance of the class. + + The message. + The inner exception. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Specifies the initial assignments of the opcode values that are used in the 'encoded terminal modes' valu + + + + + Indicates end of options. + + + + + Interrupt character; 255 if none. Similarly for the other characters. Not all of these characters are supported on all systems. + + + + + The quit character (sends SIGQUIT signal on POSIX systems). + + + + + Erase the character to left of the cursor. + + + + + Kill the current input line. + + + + + End-of-file character (sends EOF from the terminal). + + + + + End-of-line character in addition to carriage return and/or linefeed. + + + + + Additional end-of-line character. + + + + + Continues paused output (normally control-Q). + + + + + Pauses output (normally control-S). + + + + + Suspends the current program. + + + + + Another suspend character. + + + + + Reprints the current input line. + + + + + Erases a word left of cursor. + + + + + Enter the next character typed literally, even if it is a special character + + + + + Character to flush output. + + + + + Switch to a different shell layer. + + + + + Prints system status line (load, command, pid, etc). + + + + + Toggles the flushing of terminal output. + + + + + The ignore parity flag. The parameter SHOULD be 0 if this flag is FALSE, and 1 if it is TRUE. + + + + + Mark parity and framing errors. + + + + + Enable checking of parity errors. + + + + + Strip 8th bit off characters. + + + + + Map NL into CR on input. + + + + + Ignore CR on input. + + + + + Map CR to NL on input. + + + + + Translate uppercase characters to lowercase. + + + + + Enable output flow control. + + + + + Any char will restart after stop. + + + + + Enable input flow control. + + + + + Ring bell on input queue full. + + + + + Enable signals INTR, QUIT, [D]SUSP. + + + + + Canonicalize input lines. + + + + + Enable input and output of uppercase characters by preceding their lowercase equivalents with "\". + + + + + Enable echoing. + + + + + Visually erase chars. + + + + + Kill character discards current line. + + + + + Echo NL even if ECHO is off. + + + + + Don't flush after interrupt. + + + + + Stop background jobs from output. + + + + + Enable extensions. + + + + + Echo control characters as ^(Char). + + + + + Visual erase for line kill. + + + + + Retype pending input. + + + + + Enable output processing. + + + + + Convert lowercase to uppercase. + + + + + Map NL to CR-NL. + + + + + Translate carriage return to newline (output). + + + + + Translate newline to carriage return-newline (output). + + + + + Newline performs a carriage return (output). + + + + + 7 bit mode. + + + + + 8 bit mode. + + + + + Parity enable. + + + + + Odd parity, else even. + + + + + Specifies the input baud rate in bits per second. + + + + + Specifies the output baud rate in bits per second. + + + + + Specifies compression modes + + + + + Specifies that content should be compressed. + + + + + Specifies that content should be decompressed. + + + + + Represents base class for compression algorithm implementation + + + + + Represents the abstract base class from which all implementations of algorithms must inherit. + + + + + Gets algorithm name. + + + + + Initializes a new instance of the class. + + + + + Initializes the algorithm + + The session. + + + + Compresses the specified data. + + Data to compress. + Compressed data + + + + Decompresses the specified data. + + Compressed data. + Decompressed data. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged ResourceMessages. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Gets or sets a value indicating whether compression is active. + + + true if compression is active; otherwise, false. + + + + + Gets the session. + + + + + Represents "zlib" compression implementation + + + + + Initializes the algorithm + + The session. + + + + Gets algorithm name. + + + + + Represents "zlib@openssh.org" compression implementation + + + + + Initializes the algorithm + + The session. + + + + Gets algorithm name. + + + + + Implements Zlib compression algorithm. + + + + + Initializes a new instance of the class. + + The stream. + The mode. + + + + Writes the specified buffer. + + The buffer. + The offset. + The count. + + + + Represents remote connection information class. + + + This class is NOT thread-safe. Do not use the same with multiple + client instances. + + + + + Represents remote connection information. + + + + + Gets the supported channel requests for this connection. + + + The supported channel requests for this connection. + + + + + Gets the character encoding. + + + The character encoding. + + + + + Gets the number of retry attempts when session channel creation failed. + + + The number of retry attempts when session channel creation failed. + + + + + Gets or sets connection timeout. + + + The connection timeout. The default value is 30 seconds. + + + + + + + + Occurs when authentication banner is sent by the server. + + + + + Signals that an authentication banner message was received from the server. + + The session in which the banner message was received. + The banner message.{ + + + + Creates a for the credentials represented + by the current . + + + A for the credentials represented by the + current . + + + + + Gets the supported authentication methods for this connection. + + + The supported authentication methods for this connection. + + + + + Initializes a new instance of the class. + + The host. + The username. + The authentication methods. + is null. + is a zero-length string. + is null, a zero-length string or contains only whitespace characters. + is null. + No specified. + + + + Initializes a new instance of the class. + + The host. + The port. + The username. + The authentication methods. + is null. + is null, a zero-length string or contains only whitespace characters. + is not within and . + is null. + No specified. + + + + Initializes a new instance of the class. + + Connection host. + Connection port. + Connection username. + Type of the proxy. + The proxy host. + The proxy port. + The proxy username. + The proxy password. + The authentication methods. + is null. + is null, a zero-length string or contains only whitespace characters. + is not within and . + is not and is null. + is not and is not within and . + is null. + No specified. + + + + Authenticates the specified session. + + The session to be authenticated. + is null. + No suitable authentication method found to complete authentication, or permission denied. + + + + Signals that an authentication banner message was received from the server. + + The session in which the banner message was received. + The banner message.{ + + + + Gets supported key exchange algorithms for this connection. + + + + + Gets supported encryptions for this connection. + + + + + Gets supported hash algorithms for this connection. + + + + + Gets supported host key algorithms for this connection. + + + + + Gets supported authentication methods for this connection. + + + + + Gets supported compression algorithms for this connection. + + + + + Gets the supported channel requests for this connection. + + + The supported channel requests for this connection. + + + + + Gets a value indicating whether connection is authenticated. + + + true if connection is authenticated; otherwise, false. + + + + + Gets connection host. + + + + + Gets connection port. + + + The connection port. The default value is 22. + + + + + Gets connection username. + + + + + Gets proxy type. + + + The type of the proxy. + + + + + Gets proxy connection host. + + + + + Gets proxy connection port. + + + + + Gets proxy connection username. + + + + + Gets proxy connection password. + + + + + Gets or sets connection timeout. + + + The connection timeout. The default value is 30 seconds. + + + + + + + + Gets or sets the character encoding. + + + The character encoding. The default is . + + + + + Gets or sets number of retry attempts when session channel creation failed. + + + The number of retry attempts when session channel creation failed. The default + value is 10. + + + + + Gets or sets maximum number of session channels to be open simultaneously. + + + The maximum number of session channels to be open simultaneously. The default + value is 10. + + + + + Occurs when authentication banner is sent by the server. + + + + + + + + Gets the current key exchange algorithm. + + + + + Gets the current server encryption. + + + + + Gets the current client encryption. + + + + + Gets the current server hash algorithm. + + + + + Gets the current client hash algorithm. + + + + + Gets the current host key algorithm. + + + + + Gets the current server compression algorithm. + + + + + Gets the server version. + + + + + Get the client version. + + + + + Gets the current client compression algorithm. + + + + + Provides functionality for remote port forwarding + + + Provides functionality for remote port forwarding + + + Provides functionality for remote port forwarding + + + + + Base class for port forwarding functionality. + + + + + Supports port forwarding functionality. + + + + + The event occurs as the forwarded port is being stopped. + + + + + Starts port forwarding. + + + + + Stops port forwarding. + + + + + Starts port forwarding. + + + + + Stops port forwarding, and waits for the specified timeout until all pending + requests are processed. + + The maximum amount of time to wait for pending requests to finish processing. + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Ensures the current instance is not disposed. + + The current instance is disposed. + + + + Raises event. + + The exception. + + + + Raises event. + + Request originator host. + Request originator port. + + + + Raises the event. + + + + + Handles session ErrorOccured event. + + The source of the event. + The instance containing the event data. + + + + Gets or sets the session. + + + The session. + + + + + The event occurs as the forwarded port is being stopped. + + + + + The event occurs as the forwarded port is being stopped. + + + + + Gets or sets a value indicating whether port forwarding is started. + + + true if port forwarding is started; otherwise, false. + + + + + Occurs when an exception is thrown. + + + + + Occurs when a port forwarding request is received. + + + + + Initializes a new instance of the class. + + The bound port. + The host. + The port. + + + + + + + Initializes a new instance of the class. + + The bound host. + The bound port. + The host. + The port. + + + + Initializes a new instance of the class. + + The bound host address. + The bound port. + The host address. + The port. + is null. + is null. + is greater than . + is greater than . + + + + Starts remote port forwarding. + + + + + Stops remote port forwarding. + + The maximum amount of time to wait for pending requests to finish processing. + + + + Ensures the current instance is not disposed. + + The current instance is disposed. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Executes the specified action in a separate thread. + + The action to execute. + + + + Gets or sets a value indicating whether port forwarding is started. + + + true if port forwarding is started; otherwise, false. + + + + + Gets the bound host. + + + + + Gets the bound host. + + + + + Gets the bound port. + + + + + Gets the forwarded host. + + + + + Gets the forwarded host. + + + + + Gets the forwarded port. + + + + + Holds information about key size and cipher to use + + + + + Initializes a new instance of the class. + + Size of the key. + The hash algorithm to use for a given key. + + + + Gets the size of the key. + + + The size of the key. + + + + + Gets the cipher. + + + + + Factory for creating new services. + + + + + Creates a new with the specified . + + The to use for creating a new session. + + An for the specified . + + is null. + + + + Creates a new in a given and with + the specified operation timeout and encoding. + + The to create the in. + The operation timeout. + The encoding. + + An . + + + + + Create a new . + + + A . + + + + + Creates a new in a given + and with the specified operation timeout. + + The to create the in. + The operation timeout. + + An . + + + + + Provides functionality to connect and interact with SSH server. + + + + + Connects to the server. + + Socket connection to the SSH server or proxy server could not be established, or an error occurred while resolving the hostname. + SSH session could not be established. + Authentication of SSH session failed. + Failed to establish proxy connection. + + + + Create a new SSH session channel. + + + A new SSH session channel. + + + + + Create a new channel for a locally forwarded TCP/IP port. + + + A new channel for a locally forwarded TCP/IP port. + + + + + Creates a "forwarded-tcpip" SSH channel. + + + A new "forwarded-tcpip" SSH channel. + + + + + Disconnects from the server. + + + This sends a SSH_MSG_DISCONNECT message to the server, waits for the + server to close the socket on its end and subsequently closes the client socket. + + + + + Called when client is disconnecting from the server. + + + + + Registers SSH message with the session. + + The name of the message to register with the session. + + + + Sends a message to the server. + + The message to send. + The client is not connected. + The operation timed out. + The size of the packet exceeds the maximum size defined by the protocol. + + + + Sends a message to the server. + + The message to send. + + true if the message was sent to the server; otherwise, false. + + The size of the packet exceeds the maximum size defined by the protocol. + + This methods returns false when the attempt to send the message results in a + or a . + + + + + Unregister SSH message from the session. + + The name of the message to unregister with the session. + + + + Waits for the specified handle or the exception handle for the receive thread + to signal within the connection timeout. + + The wait handle. + A received package was invalid or failed the message integrity check. + None of the handles are signaled in time and the session is not disconnecting. + A socket error was signaled while receiving messages from the server. + + When neither handles are signaled in time and the session is not closing, then the + session is disconnected. + + + + + Waits for the specified handle or the exception handle for the receive thread + to signal within the specified timeout. + + The wait handle. + The time to wait for any of the handles to become signaled. + A received package was invalid or failed the message integrity check. + None of the handles are signaled in time and the session is not disconnecting. + A socket error was signaled while receiving messages from the server. + + When neither handles are signaled in time and the session is not closing, then the + session is disconnected. + + + + + Gets or sets the connection info. + + The connection info. + + + + Gets a value indicating whether the session is connected. + + + true if the session is connected; otherwise, false. + + + + + Gets the session semaphore that controls session channels. + + + The session semaphore. + + + + + Gets a that can be used to wait for the message listener loop to complete. + + + A that can be used to wait for the message listener loop to complete, or + null when the session has not been connected. + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when session has been disconnected from the server. + + + + + Occurs when an error occurred. + + + + + Occurs when host key received. + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message is received from the server. + + + + + Base interface for SSH subsystem implementations. + + + + + Connects the subsystem using a new SSH channel session. + + The session is already connected. + The method was called after the session was disposed. + + + + Disconnects the subsystem channel. + + + + + Waits a specified time for a given to get signaled. + + The handle to wait for. + The time to wait for to get signaled. + The connection was closed by the server. + The channel was closed. + The handle did not get signaled within the specified . + + + + Gets a value indicating whether this session is open. + + + true if this session is open; otherwise, false. + + + + + Represents SSH_MSG_KEXECDH_INIT message. + + + + + Base class for all SSH protocol messages + + + + + Gets data bytes array + + Byte array representation of the message + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets the index that represents zero in current data type. + + + The index of the zero reader. + + + + + Indicates that message that implement this interface is allowed during key exchange phase + + + + + Initializes a new instance of the class. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the client's ephemeral contribution to the ECDH exchange, encoded as an octet string + + + + + Represents SSH_MSG_KEXECDH_REPLY message. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets a string encoding an X.509v3 certificate containing the server's ECDSA public host key + + The host key. + + + + Gets the the server's ephemeral contribution to the ECDH exchange, encoded as an octet string. + + + + + Gets the an octet string containing the server's signature of the newly established exchange hash value. + + The signature. + + + + Gets the NetConf server capabilities. + + + The NetConf server capabilities. + + + + + Gets the NetConf client capabilities. + + + The NetConf client capabilities. + + + + + + + + + + Initializes an implementation of the class. + + + + + Initializes a new instance of the class. + + + + + Reset the chaining variables to the IV values. + + + + + Rounds 0-15 + + The x. + The y. + The z. + + + + + Rounds 16-31 + + The x. + The y. + The z. + + + + + ounds 32-47 + + The x. + The y. + The z. + + + + + Rounds 48-63 + + The x. + The y. + The z. + + + + + ounds 64-79 + + The x. + The y. + The z. + + + + + Gets the size, in bits, of the computed hash code. + + The size, in bits, of the computed hash code. + + + + Gets the input block size. + + The input block size. + + + + Gets the output block size. + + The output block size. + + + + Gets a value indicating whether the current transform can be reused. + + Always true. + + + + Gets a value indicating whether multiple blocks can be transformed. + + true if multiple blocks can be transformed; otherwise, false. + + + + SHA256 algorithm implementation. + + + + + Initializes a new instance of the class. + + + + + Adjust the byte counts so that byteCount2 represents the upper long (less 3 bits) word of the byte count. + + + + + Gets a value indicating whether the current transform can be reused. + + Always true. + + + + Gets a value indicating whether multiple blocks can be transformed. + + true if multiple blocks can be transformed; otherwise, false. + + + + Gets the size, in bits, of the computed hash code. + + The size, in bits, of the computed hash code. + + + + When overridden in a derived class, gets the input block size. + + The input block size. + + + + When overridden in a derived class, gets the output block size. + + The output block size. + + + + Gets the size, in bits, of the computed hash code. + + The size, in bits, of the computed hash code. + + + + When overridden in a derived class, gets the input block size. + + The input block size. + + + + When overridden in a derived class, gets the output block size. + + The output block size. + + + + Represents base class for Diffie Hellman key exchange algorithm + + + + + Represents base class for different key exchange algorithm implementations + + + + + Starts key exchange algorithm + + The session. + Key exchange init message. + + + + Finishes key exchange algorithm. + + + + + Creates the server side cipher to use. + + Server cipher. + + + + Creates the client side cipher to use. + + Client cipher. + + + + Creates the server side hash algorithm to use. + + Hash algorithm + + + + Creates the client side hash algorithm to use. + + Hash algorithm + + + + Creates the compression algorithm to use to deflate data. + + Compression method. + + + + Creates the compression algorithm to use to inflate data. + + Compression method. + + + + Determines whether the specified host key can be trusted. + + The host algorithm. + + true if the specified host can be trusted; otherwise, false. + + + + + Validates the exchange hash. + + true if exchange hash is valid; otherwise false. + + + + Calculates key exchange hash value. + + Key exchange hash. + + + + Hashes the specified data bytes. + + The hash data. + + Hashed bytes + + + + + Sends SSH message to the server + + The message. + + + + Generates the session key. + + The shared key. + The exchange hash. + The key. + The size. + + + + + Generates the session key. + + The shared key. + The exchange hash. + The p. + The session id. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged ResourceMessages. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Gets or sets the session. + + + The session. + + + + + Gets or sets key exchange shared key. + + + The shared key. + + + + + Gets the exchange hash. + + The exchange hash. + + + + Occurs when host key received. + + + + + Specifies key exchange group number. + + + + + Specifies key exchange prime number. + + + + + Specifies client payload + + + + + Specifies server payload + + + + + Specifies client exchange number. + + + + + Specifies server exchange number. + + + + + Specifies random generated number. + + + + + Specifies host key data. + + + + + Specifies signature data. + + + + + Validates the exchange hash. + + + true if exchange hash is valid; otherwise false. + + + + + Starts key exchange algorithm + + The session. + Key exchange init message. + + + + Populates the client exchange value. + + + + + Handles the server DH reply message. + + The host key. + The server exchange value. + The signature. + + + + Calculates key exchange hash value. + + + Key exchange hash. + + + + + Starts key exchange algorithm + + The session. + Key exchange init message. + + + + Finishes key exchange algorithm. + + + + + Represents base class for Diffie Hellman key exchange algorithm + + + + + Specifies client payload + + + + + Specifies server payload + + + + + Specifies client exchange number. + + + + + Specifies server exchange number. + + + + + Specifies random generated number. + + + + + Specifies host key data. + + + + + Specifies signature data. + + + + + Starts key exchange algorithm + + The session. + Key exchange init message. + + + + Validates the exchange hash. + + + true if exchange hash is valid; otherwise false. + + + + + Populates the client exchange value. + + + + + Basic factory for creating new services. + + + + + Creates a new with the specified . + + The to use for creating a new session. + + An for the specified . + + is null. + + + + Creates a new in a given and with + the specified operation timeout and encoding. + + The to create the in. + The operation timeout. + The encoding. + + An . + + + + + Create a new . + + + A . + + + + + Creates a new in a given + and with the specified operation timeout. + + The to create the in. + The operation timeout. + + An . + + + + + Changes the current working directory to the specified path. + + The new working directory. + + + + Resolves a given path into an absolute path on the server. + + The path to resolve. + + The absolute path. + + + + + Performs SSH_FXP_FSTAT request. + + The handle. + + File attributes + + + + + Performs SSH_FXP_LSTAT request. + + The path. + + File attributes + + + + + Performs SSH_FXP_MKDIR request. + + The path. + + + + Performs SSH_FXP_OPEN request + + The path. + The flags. + if set to true returns null instead of throwing an exception. + File handle. + + + + Performs SSH_FXP_OPENDIR request + + The path. + if set to true returns null instead of throwing an exception. + File handle. + + + + Performs posix-rename@openssh.com extended request. + + The old path. + The new path. + + + + Performs SSH_FXP_READ request. + + The handle. + The offset. + The length. + data array; null if EOF + + + + Performs SSH_FXP_READDIR request + + The handle. + + + + + Performs SSH_FXP_REMOVE request. + + The path. + + + + Performs SSH_FXP_RENAME request. + + The old path. + The new path. + + + + Performs SSH_FXP_RMDIR request. + + The path. + + + + Performs SSH_FXP_SETSTAT request. + + The path. + The attributes. + + + + Performs statvfs@openssh.com extended request. + + The path. + if set to true [null on error]. + + + + + Performs SSH_FXP_SYMLINK request. + + The linkpath. + The targetpath. + + + + Performs SSH_FXP_FSETSTAT request. + + The handle. + The attributes. + + + + Performs SSH_FXP_WRITE request. + + The handle. + The offset. + The data to send. + The wait event handle if needed. + The callback to invoke when the write has completed. + + + + Performs SSH_FXP_CLOSE request. + + The handle. + + + + Calculates the optimal size of the buffer to read data from the channel. + + The buffer size configured on the client. + + The optimal size of the buffer to read data from the channel. + + + + + Calculates the optimal size of the buffer to write data on the channel. + + The buffer size configured on the client. + The file handle. + + The optimal size of the buffer to write data on the channel. + + + Currently, we do not take the remote window size into account. + + + + + Gets the SFTP protocol version. + + + The SFTP protocol version. + + + + + Gets the remote working directory. + + + The remote working directory. + + + + + Represents instance of the SSH shell object + + + Contains operation for working with SSH Shell. + + + + + Executes the specified action in a separate thread. + + The action to execute. + + + + Clears all buffers for this stream and causes any buffered data to be written to the underlying device. + + An I/O error occurs. + + + + Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read. + + An array of bytes. When this method returns, the buffer contains the specified byte array with the values between and ( + - 1) replaced by the bytes read from the current source. + The zero-based byte offset in at which to begin storing the data read from the current stream. + The maximum number of bytes to be read from the current stream. + + The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached. + + The sum of and is larger than the buffer length. + is null. + or is negative. + An I/O error occurs. + The stream does not support reading. + Methods were called after the stream was closed. + + + + This method is not supported. + + A byte offset relative to the parameter. + A value of type indicating the reference point used to obtain the new position. + + The new position within the current stream. + + An I/O error occurs. + The stream does not support seeking, such as if the stream is constructed from a pipe or console output. + Methods were called after the stream was closed. + + + + This method is not supported. + + The desired length of the current stream in bytes. + An I/O error occurs. + The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output. + Methods were called after the stream was closed. + + + + Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written. + + An array of bytes. This method copies bytes from to the current stream. + The zero-based byte offset in at which to begin copying bytes to the current stream. + The number of bytes to be written to the current stream. + The sum of and is greater than the buffer length. + is null. + or is negative. + An I/O error occurs. + The stream does not support writing. + Methods were called after the stream was closed. + + + + Expects the specified expression and performs action when one is found. + + The expected expressions and actions to perform. + + + + Expects the specified expression and performs action when one is found. + + Time to wait for input. + The expected expressions and actions to perform, if the specified time elapsed and expected condition have not met, that method will exit without executing any action. + + + + Begins the expect. + + The expect actions. + + An that references the asynchronous operation. + + + + + Begins the expect. + + The callback. + The expect actions. + + An that references the asynchronous operation. + + + + + Begins the expect. + + The callback. + The state. + The expect actions. + + An that references the asynchronous operation. + + + + + Begins the expect. + + The timeout. + The callback. + The state. + The expect actions. + + An that references the asynchronous operation. + + + + + Ends the execute. + + The async result. + Either the IAsyncResult object did not come from the corresponding async method on this type, or EndExecute was called multiple times with the same IAsyncResult. + + + + Expects the expression specified by text. + + The text to expect. + + Text available in the shell that ends with expected text. + + + + + Expects the expression specified by text. + + The text to expect. + Time to wait for input. + + Text available in the shell that ends with expected text, if the specified time elapsed returns null. + + + + + Expects the expression specified by regular expression. + + The regular expression to expect. + Text available in the shell that contains all the text that ends with expected expression. + + + + Expects the expression specified by regular expression. + + The regular expression to expect. + Time to wait for input. + + Text available in the shell that contains all the text that ends with expected expression, if the specified time elapsed returns null. + + + + + Reads the line from the shell. If line is not available it will block the execution and will wait for new line. + + + The line read from the shell. + + + + + Reads a line from the shell. If line is not available it will block the execution and will wait for new line. + + Time to wait for input. + + The line read from the shell, or null when no input is received for the specified timeout. + + + + + Reads text available in the shell. + + + The text available in the shell. + + + + + Writes the specified text to the shell. + + The text to be written to the shell. + + If is null, nothing is written. + + + + + Writes the line to the shell. + + The line to be written to the shell. + + If is null, only the line terminator is written. + + + + + Releases the unmanaged resources used by the and optionally releases the managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Occurs when data was received. + + + + + Occurs when an error occurred. + + + + + Gets a value that indicates whether data is available on the to be read. + + + true if data is available to be read; otherwise, false. + + + + + Gets a value indicating whether the current stream supports reading. + + + true if the stream supports reading; otherwise, false. + + + + + Gets a value indicating whether the current stream supports seeking. + + + true if the stream supports seeking; otherwise, false. + + + + + Gets a value indicating whether the current stream supports writing. + + + true if the stream supports writing; otherwise, false. + + + + + Gets the length in bytes of the stream. + + A long value representing the length of the stream in bytes. + A class derived from Stream does not support seeking. + Methods were called after the stream was closed. + + + + Gets or sets the position within the current stream. + + + The current position within the stream. + + An I/O error occurs. + The stream does not support seeking. + Methods were called after the stream was closed. + + + + Provides additional information for asynchronous command execution + + + + + Initializes a new instance of the class. + + The async callback. + The state. + + + + Represents "diffie-hellman-group1-sha1" algorithm implementation. + + + + + Calculates key exchange hash value. + + + Key exchange hash. + + + + + Starts key exchange algorithm + + The session. + Key exchange init message. + + + + Finishes key exchange algorithm. + + + + + Gets the group prime. + + + The group prime. + + + + + Implementation of the SSH File Transfer Protocol (SFTP) over SSH. + + + Implementation of the SSH File Transfer Protocol (SFTP) over SSH. + + + + + + + + Synchronizes the directories. + + The source path. + The destination path. + The search pattern. + List of uploaded files. + + + + Begins the synchronize directories. + + The source path. + The destination path. + The search pattern. + The async callback. + The state. + + An that represents the asynchronous directory synchronization. + + is null. + is null or contains only whitespace. + + + + Ends the synchronize directories. + + The async result. + List of uploaded files. + Either the IAsyncResult object did not come from the corresponding async method on this type, or EndExecute was called multiple times with the same IAsyncResult. + + + + Holds the instance that is used to communicate to the + SFTP server. + + + + + Holds the operation timeout. + + + + + Holds the size of the buffer. + + + + + Initializes a new instance of the class. + + The connection info. + is null. + + + + Initializes a new instance of the class. + + Connection host. + Connection port. + Authentication username. + Authentication password. + is null. + is invalid. -or- is null or contains whitespace characters. + is not within and . + + + + Initializes a new instance of the class. + + Connection host. + Authentication username. + Authentication password. + is null. + is invalid. -or- is null contains whitespace characters. + + + + Initializes a new instance of the class. + + Connection host. + Connection port. + Authentication username. + Authentication private key file(s) . + is null. + is invalid. -or- is nunullll or contains whitespace characters. + is not within and . + + + + Initializes a new instance of the class. + + Connection host. + Authentication username. + Authentication private key file(s) . + is null. + is invalid. -or- is null or contains whitespace characters. + + + + Initializes a new instance of the class. + + The connection info. + Specified whether this instance owns the connection info. + is null. + + If is true, then the + connection info will be disposed when this instance is disposed. + + + + + Initializes a new instance of the class. + + The connection info. + Specified whether this instance owns the connection info. + The factory to use for creating new services. + is null. + is null. + + If is true, then the + connection info will be disposed when this instance is disposed. + + + + + Changes remote directory to path. + + New directory path. + is null. + Client is not connected. + Permission to change directory denied by remote host. -or- A SSH command was denied by the server. + was not found on the remote host. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + + + Changes permissions of file(s) to specified mode. + + File(s) path, may match multiple files. + The mode. + is null. + Client is not connected. + Permission to change permission on the path(s) was denied by the remote host. -or- A SSH command was denied by the server. + was not found on the remote host. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + + + Creates remote directory specified by path. + + Directory path to create. + is null or contains whitespace characters. + Client is not connected. + Permission to create the directory was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + + + Deletes remote directory specified by path. + + Directory to be deleted path. + is null or contains whitespace characters. + Client is not connected. + was not found on the remote host. + Permission to delete the directory was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + + + Deletes remote file specified by path. + + File to be deleted path. + is null or contains whitespace characters. + Client is not connected. + was not found on the remote host. + Permission to delete the file was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + + + Renames remote file from old path to new path. + + Path to the old file location. + Path to the new file location. + is null. -or- or is null. + Client is not connected. + Permission to rename the file was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + + + Renames remote file from old path to new path. + + Path to the old file location. + Path to the new file location. + if set to true then perform a posix rename. + is null. -or- or is null. + Client is not connected. + Permission to rename the file was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + + + Creates a symbolic link from old path to new path. + + The old path. + The new path. + is null. -or- is null or contains whitespace characters. + Client is not connected. + Permission to create the symbolic link was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + + + Retrieves list of files in remote directory. + + The path. + The list callback. + + List of directory entries + + is null. + Client is not connected. + Permission to list the contents of the directory was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + + + Begins an asynchronous operation of retrieving list of files in remote directory. + + The path. + The method to be called when the asynchronous write operation is completed. + A user-provided object that distinguishes this particular asynchronous write request from other requests. + The list callback. + + An that references the asynchronous operation. + + The method was called after the client was disposed. + + + + Ends an asynchronous operation of retrieving list of files in remote directory. + + The pending asynchronous SFTP request. + + List of files + + The IAsyncResult object () did not come from the corresponding async method on this type. -or- EndExecute was called multiple times with the same IAsyncResult. + + + + Gets reference to remote file or directory. + + The path. + Reference to file object. + Client is not connected. + was not found on the remote host. + is null. + The method was called after the client was disposed. + + + + Checks whether file or directory exists; + + The path. + true if directory or file exists; otherwise false. + is null or contains whitespace characters. + Client is not connected. + Permission to perform the operation was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + + + Downloads remote file specified by the path into the stream. + + File to download. + Stream to write the file into. + The download callback. + is null. + is null or contains whitespace characters. + Client is not connected. + Permission to perform the operation was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream. + + + + + Begins an asynchronous file downloading into the stream. + + The path. + The output. + + An that references the asynchronous operation. + + is null. + is null or contains whitespace characters. + Client is not connected. + Permission to perform the operation was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream. + + + + + Begins an asynchronous file downloading into the stream. + + The path. + The output. + The method to be called when the asynchronous write operation is completed. + + An that references the asynchronous operation. + + is null. + is null or contains whitespace characters. + Client is not connected. + Permission to perform the operation was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream. + + + + + Begins an asynchronous file downloading into the stream. + + The path. + The output. + The method to be called when the asynchronous write operation is completed. + A user-provided object that distinguishes this particular asynchronous write request from other requests. + The download callback. + + An that references the asynchronous operation. + + is null. + is null or contains whitespace characters. + Client is not connected. + Permission to perform the operation was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream. + + + + + Ends an asynchronous file downloading into the stream. + + The pending asynchronous SFTP request. + The IAsyncResult object () did not come from the corresponding async method on this type. -or- EndExecute was called multiple times with the same IAsyncResult. + + + + Uploads stream into remote file. + + Data input stream. + Remote file path. + The upload callback. + is null. + is null or contains whitespace characters. + Client is not connected. + Permission to upload the file was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream. + + + + + Uploads stream into remote file. + + Data input stream. + Remote file path. + if set to true then existing file will be overwritten. + The upload callback. + is null. + is null or contains whitespace characters. + Client is not connected. + Permission to upload the file was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream. + + + + + Begins an asynchronous uploading the steam into remote file. + + Data input stream. + Remote file path. + + An that references the asynchronous operation. + + is null. + is null or contains whitespace characters. + Client is not connected. + Permission to list the contents of the directory was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream. + + + + + Begins an asynchronous uploading the steam into remote file. + + Data input stream. + Remote file path. + The method to be called when the asynchronous write operation is completed. + + An that references the asynchronous operation. + + is null. + is null or contains whitespace characters. + Client is not connected. + Permission to list the contents of the directory was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream. + + + + + Begins an asynchronous uploading the steam into remote file. + + Data input stream. + Remote file path. + The method to be called when the asynchronous write operation is completed. + A user-provided object that distinguishes this particular asynchronous write request from other requests. + The upload callback. + + An that references the asynchronous operation. + + is null. + is null or contains whitespace characters. + Client is not connected. + Permission to list the contents of the directory was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream. + + + + + Begins an asynchronous uploading the steam into remote file. + + Data input stream. + Remote file path. + if set to true then existing file will be overwritten. + The method to be called when the asynchronous write operation is completed. + A user-provided object that distinguishes this particular asynchronous write request from other requests. + The upload callback. + + An that references the asynchronous operation. + + is null. + is null or contains whitespace characters. + Client is not connected. + Permission to list the contents of the directory was denied by the remote host. -or- A SSH command was denied by the server. + A SSH error where is the message from the remote host. + The method was called after the client was disposed. + + Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream. + + + + + Ends an asynchronous uploading the steam into remote file. + + The pending asynchronous SFTP request. + Either the IAsyncResult object did not come from the corresponding async method on this type, or EndExecute was called multiple times with the same IAsyncResult. + The IAsyncResult object () did not come from the corresponding async method on this type. -or- EndExecute was called multiple times with the same IAsyncResult. + + + + Gets status using statvfs@openssh.com request. + + The path. + Reference to object that contains file status information. + Client is not connected. + is null. + The method was called after the client was disposed. + + + + Appends lines to a file, and then closes the file. + + The file to append the lines to. The file is created if it does not already exist. + The lines to append to the file. + isnull -or- is null. + The method was called after the client was disposed. + + + + Appends lines to a file by using a specified encoding, and then closes the file. + + The file to append the lines to. The file is created if it does not already exist. + The lines to append to the file. + The character encoding to use. + is null. -or- is null. -or- is null. + The method was called after the client was disposed. + + + + Opens a file, appends the specified string to the file, and then closes the file. + If the file does not exist, this method creates a file, writes the specified string to the file, then closes the file. + + The file to append the specified string to. + The string to append to the file. + is null. -or- is null. + The method was called after the client was disposed. + + + + Opens a file, appends the specified string to the file, and then closes the file. + If the file does not exist, this method creates a file, writes the specified string to the file, then closes the file. + + The file to append the specified string to. + The string to append to the file. + The character encoding to use. + is null. -or- is null. -or- is null. + The method was called after the client was disposed. + + + + Creates a that appends UTF-8 encoded text to an existing file. + + The path to the file to append to. + A StreamWriter that appends UTF-8 encoded text to an existing file. + is null. + The method was called after the client was disposed. + + + + Creates a that appends UTF-8 encoded text to an existing file. + + The path to the file to append to. + The character encoding to use. + + A StreamWriter that appends UTF-8 encoded text to an existing file. + + is null. -or- is null. + The method was called after the client was disposed. + + + + Creates or overwrites a file in the specified path. + + The path and name of the file to create. + A that provides read/write access to the file specified in path + is null. + The method was called after the client was disposed. + + + + Creates or overwrites the specified file. + + The path and name of the file to create. + The number of bytes buffered for reads and writes to the file. + A that provides read/write access to the file specified in path + is null. + The method was called after the client was disposed. + + + + Creates or opens a file for writing UTF-8 encoded text. + + The file to be opened for writing. + A that writes to the specified file using UTF-8 encoding. + is null. + The method was called after the client was disposed. + + + + Creates or opens a file for writing UTF-8 encoded text. + + The file to be opened for writing. + The character encoding to use. + A that writes to the specified file using UTF-8 encoding. + is null. + The method was called after the client was disposed. + + + + Deletes the specified file or directory. + + The name of the file or directory to be deleted. Wildcard characters are not supported. + is null. + Client is not connected. + was not found on the remote host. + The method was called after the client was disposed. + + + + Returns the date and time the specified file or directory was last accessed. + + The file or directory for which to obtain access date and time information. + A structure set to the date and time that the specified file or directory was last accessed. This value is expressed in local time. + is null. + Client is not connected. + The method was called after the client was disposed. + + + + Returns the date and time, in coordinated universal time (UTC), that the specified file or directory was last accessed. + + The file or directory for which to obtain access date and time information. + A structure set to the date and time that the specified file or directory was last accessed. This value is expressed in UTC time. + is null. + Client is not connected. + The method was called after the client was disposed. + + + + Returns the date and time the specified file or directory was last written to. + + The file or directory for which to obtain write date and time information. + A structure set to the date and time that the specified file or directory was last written to. This value is expressed in local time. + is null. + Client is not connected. + The method was called after the client was disposed. + + + + Returns the date and time, in coordinated universal time (UTC), that the specified file or directory was last written to. + + The file or directory for which to obtain write date and time information. + A structure set to the date and time that the specified file or directory was last written to. This value is expressed in UTC time. + is null. + Client is not connected. + The method was called after the client was disposed. + + + + Opens a on the specified path with read/write access. + + The file to open. + A value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten. + An unshared that provides access to the specified file, with the specified mode and access. + is null. + The method was called after the client was disposed. + + + + Opens a on the specified path, with the specified mode and access. + + The file to open. + A value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten. + A value that specifies the operations that can be performed on the file. + An unshared that provides access to the specified file, with the specified mode and access. + is null. + The method was called after the client was disposed. + + + + Opens an existing file for reading. + + The file to be opened for reading. + A read-only System.IO.FileStream on the specified path. + is null. + The method was called after the client was disposed. + + + + Opens an existing UTF-8 encoded text file for reading. + + The file to be opened for reading. + A on the specified path. + is null. + The method was called after the client was disposed. + + + + Opens an existing file for writing. + + The file to be opened for writing. + An unshared object on the specified path with access. + is null. + The method was called after the client was disposed. + + + + Opens a binary file, reads the contents of the file into a byte array, and then closes the file. + + The file to open for reading. + A byte array containing the contents of the file. + is null. + The method was called after the client was disposed. + + + + Opens a text file, reads all lines of the file, and then closes the file. + + The file to open for reading. + A string array containing all lines of the file. + is null. + The method was called after the client was disposed. + + + + Opens a file, reads all lines of the file with the specified encoding, and then closes the file. + + The file to open for reading. + The encoding applied to the contents of the file. + A string array containing all lines of the file. + is null. + The method was called after the client was disposed. + + + + Opens a text file, reads all lines of the file, and then closes the file. + + The file to open for reading. + A string containing all lines of the file. + is null. + The method was called after the client was disposed. + + + + Opens a file, reads all lines of the file with the specified encoding, and then closes the file. + + The file to open for reading. + The encoding applied to the contents of the file. + A string containing all lines of the file. + is null. + The method was called after the client was disposed. + + + + Reads the lines of a file. + + The file to read. + The lines of the file. + is null. + The method was called after the client was disposed. + + + + Read the lines of a file that has a specified encoding. + + The file to read. + The encoding that is applied to the contents of the file. + The lines of the file. + is null. + The method was called after the client was disposed. + + + + Sets the date and time the specified file was last accessed. + + The file for which to set the access date and time information. + A containing the value to set for the last access date and time of path. This value is expressed in local time. + + + + Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed. + + The file for which to set the access date and time information. + A containing the value to set for the last access date and time of path. This value is expressed in UTC time. + + + + Sets the date and time that the specified file was last written to. + + The file for which to set the date and time information. + A System.DateTime containing the value to set for the last write date and time of path. This value is expressed in local time. + + + + Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to. + + The file for which to set the date and time information. + A System.DateTime containing the value to set for the last write date and time of path. This value is expressed in UTC time. + + + + Creates a new file, writes the specified byte array to the file, and then closes the file. If the target file already exists, it is overwritten. + + The file to write to. + The bytes to write to the file. + is null. + The method was called after the client was disposed. + + + + Creates a new file, writes a collection of strings to the file, and then closes the file. + + The file to write to. + The lines to write to the file. + is null. + The method was called after the client was disposed. + + + + Creates a new file, write the specified string array to the file, and then closes the file. + + The file to write to. + The string array to write to the file. + is null. + The method was called after the client was disposed. + + + + Creates a new file by using the specified encoding, writes a collection of strings to the file, and then closes the file. + + The file to write to. + The lines to write to the file. + The character encoding to use. + is null. + The method was called after the client was disposed. + + + + Creates a new file, writes the specified string array to the file by using the specified encoding, and then closes the file. + + The file to write to. + The string array to write to the file. + An object that represents the character encoding applied to the string array. + is null. + The method was called after the client was disposed. + + + + Creates a new file, writes the specified string to the file, and then closes the file. If the target file already exists, it is overwritten. + + The file to write to. + The string to write to the file. + is null. + The method was called after the client was disposed. + + + + Creates a new file, writes the specified string to the file using the specified encoding, and then closes the file. If the target file already exists, it is overwritten. + + The file to write to. + The string to write to the file. + The encoding to apply to the string. + is null. + The method was called after the client was disposed. + + + + Gets the of the file on the path. + + The path to the file. + The of the file on the path. + is null. + was not found on the remote host. + The method was called after the client was disposed. + + + + Sets the specified of the file on the specified path. + + The path to the file. + The desired . + is null. + The method was called after the client was disposed. + + + + Internals the list directory. + + The path. + The list callback. + + path + is null. + Client not connected. + + + + Internals the download file. + + The path. + The output. + An that references the asynchronous request. + The download callback. + is null. + is null or contains whitespace. + Client not connected. + + + + Internals the upload file. + + The input. + The path. + The flags. + An that references the asynchronous request. + The upload callback. + is null. + is null or contains whitespace. + Client not connected. + + + + Called when client is connected to the server. + + + + + Called when client is disconnecting from the server. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Executes the specified action in a separate thread. + + The action to execute. + + + + Gets or sets the operation timeout. + + + The timeout to wait until an operation completes. The default value is negative + one (-1) milliseconds, which indicates an infinite timeout period. + + The method was called after the client was disposed. + + + + Gets or sets the maximum size of the buffer in bytes. + + + The size of the buffer. The default buffer size is 32768 bytes (32 KB). + + + + For write operations, this limits the size of the payload for + individual SSH_FXP_WRITE messages. The actual size is always + capped at the maximum packet size supported by the peer + (minus the size of protocol fields). + + + For read operations, this controls the size of the payload which + is requested from the peer in each SSH_FXP_READ message. The peer + will send the requested number of bytes in one or more SSH_FXP_DATA + messages. To optimize the size of the SSH packets sent by the peer, + the actual requested size will take into account the size of the + SSH_FXP_DATA protocol fields. + + + The size of the each indivual SSH_FXP_DATA message is limited to the + local maximum packet size of the channel, which is set to 64 KB + for SSH.NET. However, the peer can limit this even further. + + + The method was called after the client was disposed. + + + + Gets remote working directory. + + Client is not connected. + The method was called after the client was disposed. + + + + Gets sftp protocol version. + + Client is not connected. + The method was called after the client was disposed. + + + + Provides functionality to perform keyboard interactive authentication. + + + + + Initializes a new instance of the class. + + The username. + is whitespace or null. + + + + Authenticates the specified session. + + The session to authenticate. + Result of authentication process. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Executes the specified action in a separate thread. + + The action to execute. + + + + Gets authentication method name + + + + + Occurs when server prompts for more authentication information. + + + + + Provides connection information when keyboard interactive authentication method is used + + + + + + + + Initializes a new instance of the class. + + The host. + The username. + + + + Initializes a new instance of the class. + + The host. + The port. + The username. + + + + Initializes a new instance of the class. + + Connection host. + Connection port. + Connection username. + Type of the proxy. + The proxy host. + The proxy port. + + + + Initializes a new instance of the class. + + Connection host. + Connection port. + Connection username. + Type of the proxy. + The proxy host. + The proxy port. + The proxy username. + + + + Initializes a new instance of the class. + + Connection host. + Connection username. + Type of the proxy. + The proxy host. + The proxy port. + + + + Initializes a new instance of the class. + + Connection host. + Connection username. + Type of the proxy. + The proxy host. + The proxy port. + The proxy username. + + + + Initializes a new instance of the class. + + Connection host. + Connection username. + Type of the proxy. + The proxy host. + The proxy port. + The proxy username. + The proxy password. + + + + Initializes a new instance of the class. + + Connection host. + Connection port. + Connection username. + Type of the proxy. + The proxy host. + The proxy port. + The proxy username. + The proxy password. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Occurs when server prompts for more authentication information. + + + + + + + + Provides functionality for "none" authentication method + + + + + Initializes a new instance of the class. + + The username. + is whitespace or null. + + + + Authenticates the specified session. + + The session. + + Result of authentication process. + + is null. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Gets connection name + + + + + Provides functionality to perform password authentication. + + + + + Initializes a new instance of the class. + + The username. + The password. + is whitespace or null. + is null. + + + + Initializes a new instance of the class. + + The username. + The password. + is whitespace or null. + is null. + + + + Authenticates the specified session. + + The session to authenticate. + + Result of authentication process. + + is null. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Executes the specified action in a separate thread. + + The action to execute. + + + + Gets authentication method name + + + + + Occurs when user's password has expired and needs to be changed. + + + + + Specifies behavior for expected expression + + + + + Initializes a new instance of the class. + + The expect regular expression. + The action to perform. + or is null. + + + + Initializes a new instance of the class. + + The expect expression. + The action to perform. + or is null. + + + + Gets the expected regular expression. + + + + + Gets the action to perform when expected expression is found. + + + + + Provides functionality for dynamic port forwarding + + + + + Initializes a new instance of the class. + + The port. + + + + Initializes a new instance of the class. + + The host. + The port. + + + + Starts local port forwarding. + + + + + Stops local port forwarding, and waits for the specified timeout until all pending + requests are processed. + + The maximum amount of time to wait for pending requests to finish processing. + + + + Ensures the current instance is not disposed. + + The current instance is disposed. + + + + Holds a value indicating whether the current instance is disposed. + + + true if the current instance is disposed; otherwise, false. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged ResourceMessages. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Waits for pending requests to finish, and channels to close. + + The maximum time to wait for the forwarded port to stop. + + + + Executes the specified action in a separate thread. + + The action to execute. + + + + Gets the bound host. + + + + + Gets the bound port. + + + + + Gets or sets a value indicating whether port forwarding is started. + + + true if port forwarding is started; otherwise, false. + + + + + Provides functionality for local port forwarding + + + Provides functionality for local port forwarding + + + Provides functionality for local port forwarding + + + + + Interrupts the listener, and waits for the listener loop to finish. + + + When the forwarded port is stopped, then any further action is skipped. + + + + + Initializes a new instance of the class. + + The bound port. + The host. + The port. + is greater than . + is null. + is greater than . + + + + + + + Initializes a new instance of the class. + + The bound host. + The host. + The port. + is null. + is null. + is greater than . + + + + Initializes a new instance of the class. + + The bound host. + The bound port. + The host. + The port. + is null. + is null. + is greater than . + is greater than . + + + + Starts local port forwarding. + + + + + Stops local port forwarding, and waits for the specified timeout until all pending + requests are processed. + + The maximum amount of time to wait for pending requests to finish processing. + + + + Ensures the current instance is not disposed. + + The current instance is disposed. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Executes the specified action in a separate thread. + + The action to execute. + + + + Gets the bound host. + + + + + Gets the bound port. + + + + + Gets the forwarded host. + + + + + Gets the forwarded port. + + + + + Gets or sets a value indicating whether port forwarding is started. + + + true if port forwarding is started; otherwise, false. + + + + + Provides connection information when password authentication method is used + + + + + + + + + + Initializes a new instance of the class. + + Connection host. + Connection username. + Connection password. + + + + is null. + is invalid, or is null or contains whitespace characters. + + + + Initializes a new instance of the class. + + Connection host. + Connection port. + Connection username. + Connection password. + is null. + is invalid, or is null or contains whitespace characters. + is not within and . + + + + Initializes a new instance of the class. + + Connection host. + The port. + Connection username. + Connection password. + Type of the proxy. + The proxy host. + The proxy port. + + + + Initializes a new instance of the class. + + Connection host. + The port. + Connection username. + Connection password. + Type of the proxy. + The proxy host. + The proxy port. + The proxy username. + + + + Initializes a new instance of the class. + + Connection host. + Connection username. + Connection password. + Type of the proxy. + The proxy host. + The proxy port. + + + + Initializes a new instance of the class. + + Connection host. + Connection username. + Connection password. + Type of the proxy. + The proxy host. + The proxy port. + The proxy username. + + + + Initializes a new instance of the class. + + Connection host. + Connection username. + Connection password. + Type of the proxy. + The proxy host. + The proxy port. + The proxy username. + The proxy password. + + + + Initializes a new instance of the class. + + Connection host. + Connection username. + Connection password. + + + + Initializes a new instance of the class. + + Connection host. + Connection port. + Connection username. + Connection password. + is null. + is invalid, or is null or contains whitespace characters. + is not within and . + + + + Initializes a new instance of the class. + + Connection host. + The port. + Connection username. + Connection password. + Type of the proxy. + The proxy host. + The proxy port. + + + + Initializes a new instance of the class. + + Connection host. + The port. + Connection username. + Connection password. + Type of the proxy. + The proxy host. + The proxy port. + The proxy username. + + + + Initializes a new instance of the class. + + Connection host. + Connection username. + Connection password. + Type of the proxy. + The proxy host. + The proxy port. + + + + Initializes a new instance of the class. + + Connection host. + Connection username. + Connection password. + Type of the proxy. + The proxy host. + The proxy port. + The proxy username. + + + + Initializes a new instance of the class. + + Connection host. + Connection username. + Connection password. + Type of the proxy. + The proxy host. + The proxy port. + The proxy username. + The proxy password. + + + + Initializes a new instance of the class. + + Connection host. + The port. + Connection username. + Connection password. + Type of the proxy. + The proxy host. + The proxy port. + The proxy username. + The proxy password. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Occurs when user's password has expired and needs to be changed. + + + + + + + + Provides functionality to perform private key authentication. + + + + + Initializes a new instance of the class. + + The username. + The key files. + is whitespace or null. + + + + Authenticates the specified session. + + The session to authenticate. + + Result of authentication process. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Gets authentication method name + + + + + Gets the key files used for authentication. + + + + + Provides connection information when private key authentication method is used + + + + + + + + Initializes a new instance of the class. + + Connection host. + Connection username. + Connection key files. + + + + + + + + Initializes a new instance of the class. + + Connection host. + Connection port. + Connection username. + Connection key files. + + + + Initializes a new instance of the class. + + Connection host. + The port. + Connection username. + Type of the proxy. + The proxy host. + The proxy port. + The key files. + + + + Initializes a new instance of the class. + + Connection host. + The port. + Connection username. + Type of the proxy. + The proxy host. + The proxy port. + The proxy username. + The key files. + + + + Initializes a new instance of the class. + + Connection host. + Connection username. + Type of the proxy. + The proxy host. + The proxy port. + The key files. + + + + Initializes a new instance of the class. + + Connection host. + Connection username. + Type of the proxy. + The proxy host. + The proxy port. + The proxy username. + The key files. + + + + Initializes a new instance of the class. + + Connection host. + Connection username. + Type of the proxy. + The proxy host. + The proxy port. + The proxy username. + The proxy password. + The key files. + + + + Initializes a new instance of the class. + + Connection host. + The port. + Connection username. + Type of the proxy. + The proxy host. + The proxy port. + The proxy username. + The proxy password. + The key files. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Gets the key files used for authentication. + + + + + Specifies the type of proxy client will use to connect to server. + + + + No proxy server. + + + A SOCKS4 proxy server. + + + A SOCKS5 proxy server. + + + A HTTP proxy server. + + + + Provides SCP client functionality. + + + Provides SCP client functionality. + + + + + Initializes a new instance of the class. + + The connection info. + is null. + + + + Initializes a new instance of the class. + + Connection host. + Connection port. + Authentication username. + Authentication password. + is null. + is invalid, or is null or contains whitespace characters. + is not within and . + + + + Initializes a new instance of the class. + + Connection host. + Authentication username. + Authentication password. + is null. + is invalid, or is null or contains whitespace characters. + + + + Initializes a new instance of the class. + + Connection host. + Connection port. + Authentication username. + Authentication private key file(s) . + is null. + is invalid, -or- is null or contains whitespace characters. + is not within and . + + + + Initializes a new instance of the class. + + Connection host. + Authentication username. + Authentication private key file(s) . + is null. + is invalid, -or- is null or contains whitespace characters. + + + + Initializes a new instance of the class. + + The connection info. + Specified whether this instance owns the connection info. + is null. + + If is true, then the + connection info will be disposed when this instance is disposed. + + + + + Initializes a new instance of the class. + + The connection info. + Specified whether this instance owns the connection info. + The factory to use for creating new services. + is null. + is null. + + If is true, then the + connection info will be disposed when this instance is disposed. + + + + + Uploads the specified stream to the remote host. + + Stream to upload. + Remote host file name. + + + + Downloads the specified file from the remote host to the stream. + + Remote host file name. + The stream where to download remote file. + is null or contains whitespace characters. + is null. + Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream. + + + + Checks the return code. + + The output stream. + + + + Uploads the specified file to the remote host. + + The file system info. + The path. + is null. + is null or empty. + + + + Uploads the specified directory to the remote host. + + The directory info. + The path. + fileSystemInfo + is null or empty. + + + + Downloads the specified file from the remote host to local file. + + Remote host file name. + Local file information. + is null. + is null or empty. + + + + Downloads the specified directory from the remote host to local directory. + + Remote host directory name. + Local directory information. + is null or empty. + is null. + + + + Gets or sets the operation timeout. + + + The timeout to wait until an operation completes. The default value is negative + one (-1) milliseconds, which indicates an infinite time-out period. + + + + + Gets or sets the size of the buffer. + + + The size of the buffer. The default buffer size is 16384 bytes. + + + + + Occurs when downloading file. + + + + + Occurs when uploading file. + + + + + Provides data for message events. + + Message type + + + + Initializes a new instance of the class. + + The message. + is null. + + + + Gets the message. + + + + + Represents SSH_MSG_USERAUTH_BANNER message. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets banner message. + + + + + Gets banner language. + + + + + Represents SSH_MSG_USERAUTH_FAILURE message. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets or sets the allowed authentications if available. + + + The allowed authentications. + + + + + Gets failure message. + + + + + Gets a value indicating whether authentication is partially successful. + + + true if partially successful; otherwise, false. + + + + + Represents SSH_MSG_USERAUTH_INFO_REQUEST message. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets information request name. + + + + + Gets information request instruction. + + + + + Gets information request language. + + + + + Gets information request prompts. + + + + + Represents SSH_MSG_USERAUTH_INFO_RESPONSE message. + + + + + Initializes a new instance of the class. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets authentication responses. + + + + + Represents SSH_MSG_USERAUTH_PASSWD_CHANGEREQ message. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets password change request message. + + + + + Gets message language. + + + + + Represents SSH_MSG_USERAUTH_PK_OK message. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the name of the public key algorithm. + + + The name of the public key algorithm. + + + + + Gets the public key data. + + + + + Represents SSH_MSG_USERAUTH_REQUEST message. Server as a base message for other user authentication requests. + + + + + Initializes a new instance of the class. + + Name of the service. + Authentication username. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets authentication username. + + + + + Gets the name of the service. + + + The name of the service. + + + + + Gets the name of the authentication method. + + + The name of the method. + + + + + Represents "hostbased" SSH_MSG_USERAUTH_REQUEST message. + + + + + Initializes a new instance of the class. + + Name of the service. + Authentication username. + The public key algorithm. + The public host key. + Name of the client host. + The client username. + + + + Called when type specific data need to be saved. + + + + + Gets the name of the authentication method. + + + The name of the method. + + + + + Gets the public key algorithm for host key + + + + + Gets or sets the public host key and certificates for client host. + + + The public host key. + + + + + Gets or sets the name of the client host. + + + The name of the client host. + + + + + Gets or sets the client username on the client host + + + The client username. + + + + + Gets or sets the signature. + + + The signature. + + + + + Represents "keyboard-interactive" SSH_MSG_USERAUTH_REQUEST message. + + + + + Initializes a new instance of the class. + + Name of the service. + Authentication username. + + + + Called when type specific data need to be saved. + + + + + Gets the name of the authentication method. + + + The name of the method. + + + + + Gets message language. + + + + + Gets authentication sub methods. + + + + + Represents "none" SSH_MSG_USERAUTH_REQUEST message. + + + + + Initializes a new instance of the class. + + Name of the service. + Authentication username. + + + + Gets the name of the authentication method. + + + The name of the method. + + + + + Represents "password" SSH_MSG_USERAUTH_REQUEST message. + + + + + Initializes a new instance of the class. + + Name of the service. + Authentication username. + Authentication password. + + + + Initializes a new instance of the class. + + Name of the service. + Authentication username. + Authentication password. + New authentication password. + + + + Called when type specific data need to be saved. + + + + + Gets the name of the authentication method. + + + The name of the method. + + + + + Gets authentication password. + + + + + Gets new authentication password. + + + + + Represents "publickey" SSH_MSG_USERAUTH_REQUEST message. + + + + + Initializes a new instance of the class. + + Name of the service. + Authentication username. + Name of private key algorithm. + Private key data. + + + + Initializes a new instance of the class. + + Name of the service. + Authentication username. + Name of private key algorithm. + Private key data. + Private key signature. + + + + Called when type specific data need to be saved. + + + + + Gets the name of the authentication method. + + + The name of the method. + + + + + Gets the name of the public key algorithm. + + + The name of the public key algorithm. + + + + + Gets the public key data. + + + + + Gets or sets public key signature. + + + The signature. + + + + + Represents SSH_MSG_USERAUTH_SUCCESS message. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Represents SSH_MSG_CHANNEL_CLOSE message. + + + + + Base class for all channel specific SSH messages. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets or sets the local channel number. + + + The local channel number. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The local channel number. + + + + Represents SSH_MSG_CHANNEL_DATA message. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The local channel number. + Message data. + + + + Loads the data. + + + + + Saves the data. + + + + + Gets or sets message data. + + + The data. + + + + + Represents SSH_MSG_CHANNEL_EOF message. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The local channel number. + + + + Represents SSH_MSG_CHANNEL_EXTENDED_DATA message. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The local channel number. + The message data type code. + The message data. + + + + Loads the data. + + + + + Saves the data. + + + + + Gets message data type code. + + + + + Gets message data. + + + + + Represents SSH_MSG_CHANNEL_FAILURE message. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The local channel number. + + + + Represents SSH_MSG_CHANNEL_OPEN_CONFIRMATION message. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The local channel number. + Initial size of the window. + Maximum size of the packet. + The remote channel number. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the remote channel number. + + + + + Gets the initial size of the window. + + + The initial size of the window. + + + + + Gets the maximum size of the packet. + + + The maximum size of the packet. + + + + + Represents SSH_MSG_CHANNEL_OPEN_FAILURE message. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The local channel number. + The description. + The reason code. + + + + Initializes a new instance of the class. + + The local channel number. + The description. + The reason code. + The language (RFC3066). + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets failure reason code. + + + + + Gets description for failure. + + + + + Gets message language. + + + + + List channel open failure reasons defined by the protocol. + + + + + SSH_OPEN_ADMINISTRATIVELY_PROHIBITED + + + + + SSH_OPEN_CONNECT_FAILED + + + + + SSH_OPEN_UNKNOWN_CHANNEL_TYPE + + + + + SSH_OPEN_RESOURCE_SHORTAGE + + + + + Base class for open channel messages + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the type of the channel to open. + + + The type of the channel to open. + + + + + Represents SSH_MSG_CHANNEL_OPEN message. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The channel number. + Initial size of the window. + Maximum size of the packet. + The info. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the type of the channel. + + + The type of the channel. + + + + + Gets the initial size of the window. + + + The initial size of the window. + + + + + Gets the maximum size of the packet. + + + The maximum size of the packet. + + + + + Gets channel specific open information. + + + + + Used to open "direct-tcpip" channel type + + + + + Specifies channel open type + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The host to connect. + The port to connect. + The originator address. + The originator port. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the type of the channel to open. + + + The type of the channel to open. + + + + + Gets the host to connect. + + + + + Gets the port to connect. + + + + + Gets the originator address. + + + + + Gets the originator port. + + + + + Used to open "forwarded-tcpip" channel type + + + + + Specifies channel open type + + + + + Initializes a new instance. + + + + + Initializes a new instance with the specified connector + address and port, and originator address and port. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the type of the channel to open. + + + The type of the channel to open. + + + + + Gets the connected address. + + + + + Gets the connected port. + + + + + Gets the originator address. + + + + + Gets the originator port. + + + + + Used to open "session" channel type + + + + + Specifies channel open type + + + + + Gets the type of the channel to open. + + + The type of the channel to open. + + + + + Used to open "x11" channel type + + + + + Specifies channel open type + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the type of the channel to open. + + + The type of the channel to open. + + + + + Gets the originator address. + + + + + Gets the originator port. + + + + + Represents "break" type channel request information + + + + + Represents type specific information for channel request. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Gets or sets a value indicating whether reply message is needed. + + + true if reply message is needed; otherwise, false. + + + + + Channel request name + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + Length of the break. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Gets break length in milliseconds. + + + + + Represents SSH_MSG_CHANNEL_REQUEST message. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + Name of the local channel. + The info. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Gets channel request data. + + + + + Represents "eow@openssh.com" type channel request information + + + + + Channel request name + + + + + Initializes a new instance of the class. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Represents "env" type channel request information + + + + + Channel request name + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + Name of the variable. + The variable value. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Gets or sets the name of the variable. + + + The name of the variable. + + + + + Gets or sets the variable value. + + + The variable value. + + + + + Represents "exec" type channel request information + + + + + Channel request name + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The command. + The character encoding to use. + or is null. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Gets command to execute. + + + The command. + + + + + Gets the encoding. + + + The encoding. + + + + + Represents "exit-signal" type channel request information + + + + + Channel request name + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + Name of the signal. + if set to true then core is dumped. + The error message. + The language. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Gets the name of the signal. + + + The name of the signal. + + + + + Gets a value indicating whether core is dumped. + + + true if core is dumped; otherwise, false. + + + + + Gets the error message. + + + + + Gets message language. + + + + + Represents "exit-status" type channel request information + + + + + Channel request name. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The exit status number. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Gets the exit status number. + + + + + Represents "keepalive@openssh.com" type channel request information + + + + + Channel request name + + + + + Initializes a new instance of the class. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Represents "pty-req" type channel request information + + + + + Channel request name + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The environment variable. + The columns. + The rows. + The width. + The height. + The terminal mode values. + + + + Called when type specific data need to be saved. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Gets or sets the environment variable (e.g., vt100). + + + The environment variable. + + + + + Gets or sets the terminal width in columns (e.g., 80). + + + The terminal width in columns. + + + + + Gets or sets the terminal width in rows (e.g., 24). + + + The terminal width in rows. + + + + + Gets or sets the terminal width in pixels (e.g., 640). + + + The terminal width in pixels. + + + + + Gets or sets the terminal height in pixels (e.g., 480). + + + The terminal height in pixels. + + + + + Gets or sets the terminal mode. + + + The terminal mode. + + + + + Represents "shell" type channel request information + + + + + Channel request name + + + + + Initializes a new instance of the class. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Represents "signal" type channel request information + + + + + Channel request name. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + Name of the signal. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Gets the name of the signal. + + + The name of the signal. + + + + + Represents "subsystem" type channel request information + + + + + Channel request name + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The subsystem. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Gets the name of the subsystem. + + + The name of the subsystem. + + + + + Represents "window-change" type channel request information + + + + + Channe request name + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The columns. + The rows. + The width. + The height. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Gets the columns. + + + + + Gets the rows. + + + + + Gets the width. + + + + + Gets the height. + + + + + Represents "x11-req" type channel request information + + + + + Channel request name + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + if set to true it is a single connection. + The protocol. + The cookie. + The screen number. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Gets or sets a value indicating whether it is a single connection. + + + true if it is a single connection; otherwise, false. + + + + + Gets or sets the authentication protocol. + + + The authentication protocol. + + + + + Gets or sets the authentication cookie. + + + The authentication cookie. + + + + + Gets or sets the screen number. + + + The screen number. + + + + + Represents "xon-xoff" type channel request information + + + + + Channel request type + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + if set to true [client can do]. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Gets or sets a value indicating whether client can do. + + + true if client can do; otherwise, false. + + + + + Represents SSH_MSG_CHANNEL_SUCCESS message. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The local channel number. + + + + Represents SSH_MSG_CHANNEL_SUCCESS message. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The local channel number. + The bytes to add. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets number of bytes to add to the window. + + + + + Represents SSH_MSG_GLOBAL_REQUEST message. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + Name of the request. + if set to true [want reply]. + + + + Initializes a new instance of the class. + + Name of the request. + if set to true [want reply]. + The address to bind. + The port to bind. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the name of the request. + + + The name of the request. + + + + + Gets a value indicating whether message reply should be sent.. + + + true if message reply should be sent; otherwise, false. + + + + + Gets the address to bind to. + + + + + Gets port number to bind to. + + + + + Specifies supported request names. + + + + + tcpip-forward + + + + + cancel-tcpip-forward + + + + + Represents SSH_MSG_REQUEST_FAILURE message. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Represents SSH_MSG_REQUEST_SUCCESS message. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The bound port. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the bound port. + + + + + Indicates that a class represents SSH message. This class cannot be inherited. + + + + + Initializes a new instance of the class. + + The name. + The number. + + + + Gets or sets message name as defined in RFC 4250. + + + The name. + + + + + Gets or sets message number as defined in RFC 4250. + + + The number. + + + + + Specifies list of supported services + + + + + ssh-userauth + + + + + ssh-connection + + + + + Represents SSH_MSG_DEBUG message. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets a value indicating whether the message to be always displayed. + + + true if the message always to be displayed; otherwise, false. + + + + + Gets debug message. + + + + + Gets message language. + + + + + Represents SSH_MSG_DISCONNECT message. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The reason code. + The message. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets disconnect reason code. + + + + + Gets disconnect description. + + + + + Gets message language. + + + + + Provides list of disconnect reason as specified by the protocol. + + + + + Disconnect reason is not provided. + + + + + SSH_DISCONNECT_HOST_NOT_ALLOWED_TO_CONNECT + + + + + SSH_DISCONNECT_PROTOCOL_ERROR + + + + + SSH_DISCONNECT_KEY_EXCHANGE_FAILED + + + + + SSH_DISCONNECT_RESERVED + + + + + SSH_DISCONNECT_MAC_ERROR + + + + + SSH_DISCONNECT_COMPRESSION_ERROR + + + + + SSH_DISCONNECT_SERVICE_NOT_AVAILABLE + + + + + SSH_DISCONNECT_PROTOCOL_VERSION_NOT_SUPPORTED + + + + + SSH_DISCONNECT_HOST_KEY_NOT_VERIFIABLE + + + + + SSH_DISCONNECT_CONNECTION_LOST + + + + + SSH_DISCONNECT_BY_APPLICATION + + + + + SSH_DISCONNECT_TOO_MANY_CONNECTIONS + + + + + SSH_DISCONNECT_AUTH_CANCELLED_BY_USER + + + + + SSH_DISCONNECT_NO_MORE_AUTH_METHODS_AVAILABLE + + + + + SSH_DISCONNECT_ILLEGAL_USER_NAME + + + + + Represents SSH_MSG_IGNORE message. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The data. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets ignore message data if any. + + + + + Represents SSH_MSG_KEX_DH_GEX_GROUP message. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets or sets the safe prime. + + + The safe prime. + + + + + Gets or sets the generator for subgroup in GF(p). + + + The sub group. + + + + + Represents SSH_MSG_KEX_DH_GEX_INIT message. + + + + + Initializes a new instance of the class. + + The client exchange value. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the E value. + + + + + Represents SSH_MSG_KEX_DH_GEX_REPLY message. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets server public host key and certificates + + The host key. + + + + Gets the F value. + + + + + Gets the signature of H. + + The signature. + + + + Represents SSH_MSG_KEX_DH_GEX_REQUEST message. + + + + + Initializes a new instance of the class. + + The minimum. + The preferred. + The maximum. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets or sets the minimal size in bits of an acceptable group. + + + The minimum. + + + + + Gets or sets the preferred size in bits of the group the server will send. + + + The preferred. + + + + + Gets or sets the maximal size in bits of an acceptable group. + + + The maximum. + + + + + Represents SSH_MSG_KEXDH_INIT message. + + + + + Initializes a new instance of the class. + + The client exchange value. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the E value. + + + + + Represents SSH_MSG_KEXDH_REPLY message. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets server public host key and certificates + + The host key. + + + + Gets the F value. + + + + + Gets the signature of H. + + The signature. + + + + Represents SSH_MSG_KEXINIT message. + + + + + Initializes a new instance of the class. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets session cookie. + + + + + Gets or sets supported key exchange algorithms. + + + Supported key exchange algorithms. + + + + + Gets or sets supported server host key algorithms. + + + Supported server host key algorithms. + + + + + Gets or sets supported encryption algorithms client to server. + + + Supported encryption algorithms client to server. + + + + + Gets or sets supported encryption algorithms server to client. + + + Supported encryption algorithms server to client. + + + + + Gets or sets supported hash algorithms client to server. + + + Supported hash algorithms client to server. + + + + + Gets or sets supported hash algorithms server to client. + + + Supported hash algorithms server to client. + + + + + Gets or sets supported compression algorithms client to server. + + + Supported compression algorithms client to server. + + + + + Gets or sets supported compression algorithms server to client. + + + Supported compression algorithms server to client. + + + + + Gets or sets supported languages client to server. + + + Supported languages client to server. + + + + + Gets or sets supported languages server to client. + + + The languages server to client. + + + + + Gets or sets a value indicating whether first key exchange packet follows. + + + true if first key exchange packet follows; otherwise, false. + + + + + Gets or sets the reserved value. + + + The reserved value. + + + + + Represents SSH_MSG_KEXINIT message. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Represents SSH_MSG_SERVICE_ACCEPT message. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the name of the service. + + + The name of the service. + + + + + Represents SSH_MSG_SERVICE_REQUEST message. + + + + + Initializes a new instance of the class. + + Name of the service. + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets the name of the service. + + + The name of the service. + + + + + Represents SSH_MSG_UNIMPLEMENTED message. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Contains operation for working with NetConf server. + + + + + Holds instance that used to communicate to the server + + + + + Initializes a new instance of the class. + + The connection info. + is null. + + + + Initializes a new instance of the class. + + Connection host. + Connection port. + Authentication username. + Authentication password. + is null. + is invalid, or is null or contains whitespace characters. + is not within and . + + + + Initializes a new instance of the class. + + Connection host. + Authentication username. + Authentication password. + is null. + is invalid, or is null or contains whitespace characters. + + + + Initializes a new instance of the class. + + Connection host. + Connection port. + Authentication username. + Authentication private key file(s) . + is null. + is invalid, -or- is null or contains whitespace characters. + is not within and . + + + + Initializes a new instance of the class. + + Connection host. + Authentication username. + Authentication private key file(s) . + is null. + is invalid, -or- is null or contains whitespace characters. + + + + Initializes a new instance of the class. + + The connection info. + Specified whether this instance owns the connection info. + is null. + + If is true, then the + connection info will be disposed when this instance is disposed. + + + + + Initializes a new instance of the class. + + The connection info. + Specified whether this instance owns the connection info. + The factory to use for creating new services. + is null. + is null. + + If is true, then the + connection info will be disposed when this instance is disposed. + + + + + Sends the receive RPC. + + The RPC. + Reply message to RPC request + Client is not connected. + + + + Sends the receive RPC. + + The XML. + Reply message to RPC request + + + + Sends the close RPC. + + Reply message to closing RPC request + Client is not connected. + + + + Called when client is connected to the server. + + + + + Called when client is disconnecting from the server. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Gets or sets the operation timeout. + + + The timeout to wait until an operation completes. The default value is negative + one (-1) milliseconds, which indicates an infinite time-out period. + + + + + Gets the NetConf server capabilities. + + + The NetConf server capabilities. + + + + + Gets the NetConf client capabilities. + + + The NetConf client capabilities. + + + + + Gets or sets a value indicating whether automatic message id handling is + enabled. + + + true if automatic message id handling is enabled; otherwise, false. + The default value is true. + + + + + Base class for SSH subsystem implementations + + + + + Initializes a new instance of the SubsystemSession class. + + The session. + Name of the subsystem. + The operation timeout. + The character encoding to use. + or or is null. + + + + Connects the subsystem using a new SSH channel session. + + The session is already connected. + The method was called after the session was disposed. + + + + Disconnects the subsystem channel. + + + + + Sends data to the subsystem. + + The data to be sent. + + + + Called when channel is open. + + + + + Called when data is received. + + The data type code. + The data. + + + + Raises the error. + + The error. + + + + Waits a specified time for a given to get signaled. + + The handle to wait for. + The time to wait for to get signaled. + The connection was closed by the server. + The channel was closed. + The handle did not get signaled within the specified . + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Finalizes an instance of the class. + + + + + Specifies a timeout to wait for operation to complete + + + + + Occurs when an error occurred. + + + + + Occurs when the server has disconnected from the session. + + + + + Gets the channel associated with this session. + + + The channel associated with this session. + + + + + Gets a value indicating whether this session is open. + + + true if this session is open; otherwise, false. + + + + + Gets the character encoding to use. + + + + + Initializes a new instance of the class. + + The session. + The operation timeout. + + + + Gets NetConf server capabilities. + + + + + Gets NetConf client capabilities. + + + + + Represents private key information. + + + + + + + Supports RSA and DSA private key in both OpenSSH and ssh.com format. + + + The following encryption algorithms are supported: + + + DES-EDE3-CBC + + + DES-EDE3-CFB + + + DES-CBC + + + AES-128-CBC + + + AES-192-CBC + + + AES-256-CBC + + + + + + + + Initializes a new instance of the class. + + The private key. + + + + Initializes a new instance of the class. + + Name of the file. + is null or empty. + This method calls internally, this method does not catch exceptions from . + + + + Initializes a new instance of the class. + + Name of the file. + The pass phrase. + is null or empty, or is null. + This method calls internally, this method does not catch exceptions from . + + + + Initializes a new instance of the class. + + The private key. + The pass phrase. + or is null. + + + + Opens the specified private key. + + The private key. + The pass phrase. + + + + Decrypts encrypted private key file data. + + The cipher info. + Encrypted data. + Decryption pass phrase. + Decryption binary salt. + Decrypted byte array. + cipherInfo + , , or is null. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged ResourceMessages. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Gets the host key. + + + + + Reads next mpint data type from internal buffer where length specified in bits. + + mpint read. + + + + Implements certificate support for host algorithm. + + + + + Base class for SSH host algorithms. + + + + + Initializes a new instance of the class. + + The host key name. + + + + Signs the specified data. + + The data. + Signed data. + + + + Verifies the signature. + + The data. + The signature. + True is signature was successfully verifies; otherwise false. + + + + Gets the host key name. + + + + + Gets the host key data. + + + + + Initializes a new instance of the class. + + The host key name. + + + + Signs the specified data. + + The data. + Signed data. + + + + + Verifies the signature. + + The data. + The signature. + True if signature was successfully verified; otherwise false. + + + + + Gets the host key data. + + + + + Base class for asymmetric cipher implementations. + + + + + Base class for cipher implementation. + + + + + Encrypts the specified input. + + The input. + Encrypted data. + + + + Decrypts the specified input. + + The input. + Decrypted data. + + + + Populates buffer with big endian number representation. + + The number to convert. + The buffer. + + + + Populates buffer with big endian number representation. + + The number to convert. + The buffer. + The buffer offset. + + + + Converts big endian bytes into number. + + The buffer. + Converted . + + + + Converts big endian bytes into number. + + The buffer. + The buffer offset. + Converted . + + + + Converts big endian bytes into number. + + The buffer. + Converted . + + + + Converts big endian bytes into number. + + The buffer. + The buffer offset. + Converted . + + + + Populates buffer with big endian number representation. + + The number to convert. + The buffer. + + + + Populates buffer with big endian number representation. + + The number to convert. + The buffer. + The buffer offset. + + + + Populates buffer with little endian number representation. + + The number to convert. + The buffer. + + + + Populates buffer with little endian number representation. + + The number to convert. + The buffer. + The buffer offset. + + + + Converts little endian bytes into number. + + The buffer. + Converted . + + + + Converts little endian bytes into number. + + The buffer. + The buffer offset. + Converted . + + + + Converts little endian bytes into number. + + The buffer. + Converted . + + + + Converts little endian bytes into number. + + The buffer. + The buffer offset. + Converted . + + + + Populates buffer with little endian number representation. + + The number to convert. + The buffer. + + + + Populates buffer with little endian number representation. + + The number to convert. + The buffer. + The buffer offset. + + + + Gets the minimum data size. + + + The minimum data size. + + + + + Base class for block cipher implementations. + + + + + Base class for symmetric cipher implementations. + + + + + Initializes a new instance of the class. + + The key. + is null. + + + + Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array. + + The input data to encrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write encrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes encrypted. + + + + + Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array. + + The input data to decrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write decrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes decrypted. + + + + + Gets the key. + + + + + Gets the size of the block in bytes. + + + The size of the block in bytes. + + + + + Initializes a new instance of the class. + + The key. + Size of the block. + Cipher mode. + Cipher padding. + is null. + + + + Encrypts the specified data. + + The data. + Encrypted data + + + + Decrypts the specified data. + + The data. + Decrypted data + + + + Gets the minimum data size. + + + The minimum data size. + + + + + Gets the size of the block. + + + The size of the block. + + + + + Implements digital signature where where asymmetric cipher is used, + + + + + Base class for signature implementations + + + + + Verifies the signature. + + The input. + The signature. + True if signature was successfully verified; otherwise false. + + + + Creates the signature. + + The input. + Signed input data. + + + + Initializes a new instance of the class. + + The object identifier. + The cipher. + + + + Verifies the signature. + + The input. + The signature. + + True if signature was successfully verified; otherwise false. + + + + + Creates the signature. + + The input. + + Signed input data. + + + + + Hashes the specified input. + + The input. + Hashed data. + + + + Encodes hash using DER. + + The hash data. + DER Encoded byte array + + + + AES cipher implementation. + + + + + Initializes a new instance of the class. + + The key. + The mode. + The padding. + is null. + Keysize is not valid for this algorithm. + + + + Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array. + + The input data to encrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write encrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes encrypted. + + or is null. + or is too short. + + + + Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array. + + The input data to decrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write decrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes decrypted. + + or is null. + or is too short. + + + + Implements ARCH4 cipher algorithm + + + + + Base class of stream cipher algorithms. + + + + + Initializes a new instance of the class. + + The key. + is null. + + + + Holds the state of the RC4 engine + + + + + Initializes a new instance of the class. + + The key. + if set to true will disharged first 1536 bytes. + is null. + + + + Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array. + + The input data to encrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write encrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes encrypted. + + + + + Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array. + + The input data to decrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write decrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes decrypted. + + + + + Encrypts the specified input. + + The input. + + Encrypted data. + + + + + + Decrypts the specified input. + + The input. + + Decrypted data. + + + + + + Gets the minimum data size. + + + The minimum data size. + + + + + Blowfish cipher implementation. + + + + + The s-boxes + + + + + The s-boxes + + + + + The s-boxes + + + + + The s-boxes + + + + + The p-array + + + + + Initializes a new instance of the class. + + The key. + The mode. + The padding. + is null. + Keysize is not valid for this algorithm. + + + + Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array. + + The input data to encrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write encrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes encrypted. + + + + + Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array. + + The input data to decrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write decrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes decrypted. + + + + + apply the encryption cycle to each value pair in the table. + + The xl. + The xr. + The table. + + + + Implements CAST cipher algorithm + + + + + The rotating round key + + + + + The masking round key + + + + + Initializes a new instance of the class. + + The key. + The mode. + The padding. + is null. + Keysize is not valid for this algorithm. + + + + Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array. + + The input data to encrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write encrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes encrypted. + + + + + Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array. + + The input data to decrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write decrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes decrypted. + + + + + Sets the subkeys using the same nomenclatureas described in RFC2144. + + The key. + + + + The first of the three processing functions for the encryption and decryption. + + The input to be processed. + The mask to be used from Km[n]. + The rotation value to be used. + + + + + The second of the three processing functions for the encryption and decryption. + + The input to be processed. + The mask to be used from Km[n]. + The rotation value to be used. + + + + + The third of the three processing functions for the encryption and decryption. + + The input to be processed. + The mask to be used from Km[n]. + The rotation value to be used. + + + + + Does the 16 rounds to encrypt the block. + + The LH-32bits of the plaintext block. + The RH-32bits of the plaintext block. + The result. + + + + Base class for cipher mode implementations + + + + + Gets the cipher. + + + + + Gets the IV vector. + + + + + Holds block size of the cipher. + + + + + Initializes a new instance of the class. + + The iv. + + + + Initializes the specified cipher mode. + + The cipher. + + + + Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array. + + The input data to encrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write encrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes encrypted. + + + + + Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array. + + The input data to decrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write decrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes decrypted. + + + + + Base class for cipher padding implementations + + + + + Pads specified input to match block size. + + Size of the block. + The input. + Padded data array. + + + + Implements DES cipher algorithm. + + + + + Initializes a new instance of the class. + + The key. + The mode. + The padding. + is null. + + + + Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array. + + The input data to encrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write encrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes encrypted. + + + + + Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array. + + The input data to decrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write decrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes decrypted. + + + + + Generates the working key. + + if set to true [encrypting]. + The key. + Generated working key. + + + + Validates the key. + + + + + Performs DES function. + + The w key. + The input. + The in off. + The out bytes. + The out off. + + + + Implements CBC cipher mode + + + + + Initializes a new instance of the class. + + The iv. + + + + Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array. + + The input data to encrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write encrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes encrypted. + + + + + Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array. + + The input data to decrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write decrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes decrypted. + + + + + Implements CFB cipher mode + + + + + Initializes a new instance of the class. + + The iv. + + + + Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array. + + The input data to encrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write encrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes encrypted. + + + + + Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array. + + The input data to decrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write decrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes decrypted. + + + + + Implements CTR cipher mode + + + + + Initializes a new instance of the class. + + The iv. + + + + Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array. + + The input data to encrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write encrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes encrypted. + + + + + Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array. + + The input data to decrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write decrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes decrypted. + + + + + Implements OFB cipher mode + + + + + Initializes a new instance of the class. + + The iv. + + + + Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array. + + The input data to encrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write encrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes encrypted. + + + + + Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array. + + The input data to decrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write decrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes decrypted. + + + + + Implements PKCS5 cipher padding + + + + + Transforms the specified input. + + Size of the block. + The input. + + Padded data array. + + + + + Implements PKCS7 cipher padding + + + + + Transforms the specified input. + + Size of the block. + The input. + + Padded data array. + + + + + Implements RSA cipher algorithm. + + + + + Initializes a new instance of the class. + + The RSA key. + + + + Encrypts the specified data. + + The data. + Encrypted data. + + + + Decrypts the specified data. + + The data. + + Decrypted data. + + Only block type 01 or 02 are supported. + Thrown when decrypted block type is not supported. + + + + Implements Serpent cipher algorithm. + + + + + Initializes a new instance of the class. + + The key. + The mode. + The padding. + is null. + Keysize is not valid for this algorithm. + + + + Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array. + + The input data to encrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write encrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes encrypted. + + + + + Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array. + + The input data to decrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write decrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes decrypted. + + + + Expand a user-supplied key material into a session key. + + @param key The user-key bytes (multiples of 4) to use. + @exception ArgumentException + + + + S0 - { 3, 8,15, 1,10, 6, 5,11,14,13, 4, 2, 7, 0, 9,12 } - 15 terms. + + A. + The b. + The c. + The d. + + + + InvSO - {13, 3,11, 0,10, 6, 5,12, 1,14, 4, 7,15, 9, 8, 2 } - 15 terms. + + A. + The b. + The c. + The d. + + + + S1 - {15,12, 2, 7, 9, 0, 5,10, 1,11,14, 8, 6,13, 3, 4 } - 14 terms. + + A. + The b. + The c. + The d. + + + + InvS1 - { 5, 8, 2,14,15, 6,12, 3,11, 4, 7, 9, 1,13,10, 0 } - 14 steps. + + A. + The b. + The c. + The d. + + + + S2 - { 8, 6, 7, 9, 3,12,10,15,13, 1,14, 4, 0,11, 5, 2 } - 16 terms. + + A. + The b. + The c. + The d. + + + + InvS2 - {12, 9,15, 4,11,14, 1, 2, 0, 3, 6,13, 5, 8,10, 7 } - 16 steps. + + A. + The b. + The c. + The d. + + + + S3 - { 0,15,11, 8,12, 9, 6, 3,13, 1, 2, 4,10, 7, 5,14 } - 16 terms. + + A. + The b. + The c. + The d. + + + + InvS3 - { 0, 9,10, 7,11,14, 6,13, 3, 5,12, 2, 4, 8,15, 1 } - 15 terms + + A. + The b. + The c. + The d. + + + + S4 - { 1,15, 8, 3,12, 0,11, 6, 2, 5, 4,10, 9,14, 7,13 } - 15 terms. + + A. + The b. + The c. + The d. + + + + InvS4 - { 5, 0, 8, 3,10, 9, 7,14, 2,12,11, 6, 4,15,13, 1 } - 15 terms. + + A. + The b. + The c. + The d. + + + + S5 - {15, 5, 2,11, 4,10, 9,12, 0, 3,14, 8,13, 6, 7, 1 } - 16 terms. + + A. + The b. + The c. + The d. + + + + InvS5 - { 8,15, 2, 9, 4, 1,13,14,11, 6, 5, 3, 7,12,10, 0 } - 16 terms. + + A. + The b. + The c. + The d. + + + + S6 - { 7, 2,12, 5, 8, 4, 6,11,14, 9, 1,15,13, 3,10, 0 } - 15 terms. + + A. + The b. + The c. + The d. + + + + InvS6 - {15,10, 1,13, 5, 3, 6, 0, 4, 9,14, 7, 2,12, 8,11 } - 15 terms. + + A. + The b. + The c. + The d. + + + + S7 - { 1,13,15, 0,14, 8, 2,11, 7, 4,12,10, 9, 3, 5, 6 } - 16 terms. + + A. + The b. + The c. + The d. + + + + InvS7 - { 3, 0, 6,13, 9,14,15, 8, 5,12,11, 7,10, 1, 4, 2 } - 17 terms. + + A. + The b. + The c. + The d. + + + + Apply the linear transformation to the register set. + + + + + Apply the inverse of the linear transformation to the register set. + + + + + Implements 3DES cipher algorithm. + + + + + Initializes a new instance of the class. + + The key. + The mode. + The padding. + is null. + + + + Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array. + + The input data to encrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write encrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes encrypted. + + + + + Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array. + + The input data to decrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write decrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes decrypted. + + + + + Validates the key. + + + + + Implements Twofish cipher algorithm + + + + Define the fixed p0/p1 permutations used in keyed S-box lookup. + By changing the following constant definitions, the S-boxes will + automatically Get changed in the Twofish engine. + + + + Initializes a new instance of the class. + + The key. + The mode. + The padding. + is null. + Keysize is not valid for this algorithm. + + + + Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array. + + The input data to encrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write encrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes encrypted. + + + + + Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array. + + The input data to decrypt. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write decrypted data. + The offset into the output byte array from which to begin writing data. + + The number of bytes decrypted. + + + + gSubKeys[] and gSBox[] are eventually used in the + encryption and decryption methods. + + + Use (12, 8) Reed-Solomon code over GF(256) to produce + a key S-box 32-bit entity from 2 key material 32-bit + entities. + + @param k0 first 32-bit entity + @param k1 second 32-bit entity + @return Remainder polynomial Generated using RS code + + + Reed-Solomon code parameters: (12,8) reversible code: +

+

+            G(x) = x^4 + (a+1/a)x^3 + ax^2 + (a+1/a)x + 1
+            
+ where a = primitive root of field generator 0x14D +

+
+ + + Implements DSA digital signature algorithm. + + + + + Initializes a new instance of the class. + + The DSA key. + key + + + + Verifies the signature. + + The input. + The signature. + + True if signature was successfully verified; otherwise false. + + Invalid signature. + + + + Creates the signature. + + The input. + + Signed input data. + + Invalid DSA key. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged ResourceMessages. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Contains DSA private and public key + + + + + Base class for asymmetric cipher algorithms + + + + + Specifies array of big integers that represent private key + + + + + Initializes a new instance of the class. + + DER encoded private key data. + + + + Initializes a new instance of the class. + + + + + Signs the specified data with the key. + + The data to sign. + + Signed data. + + + + + Verifies the signature. + + The data to verify. + The signature to verify against. + True is signature was successfully verifies; otherwise false. + + + + Gets the key specific digital signature. + + + + + Gets or sets the public key. + + + The public. + + + + + Gets the length of the key. + + + The length of the key. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + DER encoded private key data. + + + + Initializes a new instance of the class. + + The p. + The q. + The g. + The y. + The x. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged ResourceMessages. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Gets the P. + + + + + Gets the Q. + + + + + Gets the G. + + + + + Gets public key Y. + + + + + Gets private key X. + + + + + Gets the length of the key. + + + The length of the key. + + + + + Gets the digital signature. + + + + + Gets or sets the public. + + + The public. + + + + + MD5 algorithm implementation + + + + + Initializes a new instance of the class. + + + + + Routes data written to the object into the hash algorithm for computing the hash. + + The input to compute the hash code for. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + + Finalizes the hash computation after the last data is processed by the cryptographic stream object. + + + The computed hash code. + + + + + Initializes an implementation of the class. + + + + + Gets the size, in bits, of the computed hash code. + + The size, in bits, of the computed hash code. + + + + Gets the input block size. + + The input block size. + + + + Gets the output block size. + + The output block size. + + + + Gets a value indicating whether the current transform can be reused. + + Always true. + + + + Gets a value indicating whether multiple blocks can be transformed. + + true if multiple blocks can be transformed; otherwise, false. + + + + SHA1 algorithm implementation + + + + + Initializes a new instance of the class. + + + + + Routes data written to the object into the hash algorithm for computing the hash. + + The input to compute the hash code for. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + + Finalizes the hash computation after the last data is processed by the cryptographic stream object. + + + The computed hash code. + + + + + Initializes an implementation of the class. + + + + + Gets the size, in bits, of the computed hash code. + + The size, in bits, of the computed hash code. + + + + Gets the input block size. + + The input block size. + + + + Gets the output block size. + + The output block size. + + + + Gets a value indicating whether the current transform can be reused. + + Always true. + + + + Gets a value indicating whether multiple blocks can be transformed. + + true if multiple blocks can be transformed; otherwise, false. + + + + SHA256 algorithm implementation. + + + + + Initializes a new instance of the class. + + + + + Routes data written to the object into the hash algorithm for computing the hash. + + The input to compute the hash code for. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + + Finalizes the hash computation after the last data is processed by the cryptographic stream object. + + + The computed hash code. + + + + + Initializes an implementation of the class. + + + + + The SHA-256 Constants (represent the first 32 bits of the fractional parts of the cube roots of the first sixty-four prime numbers) + + + + + Gets the size, in bits, of the computed hash code. + + The size, in bits, of the computed hash code. + + + + Gets the input block size. + + The input block size. + + + + Gets the output block size. + + The output block size. + + + + Gets a value indicating whether the current transform can be reused. + + Always true. + + + + Gets a value indicating whether multiple blocks can be transformed. + + true if multiple blocks can be transformed; otherwise, false. + + + + Provides HMAC algorithm implementation. + + Class that implements . + + + + Rfc 2104. + + The key. + The size, in bits, of the computed hash code. + + + + Rfc 2104. + + The key. + + + + Initializes an implementation of the class. + + + + + Hashes the core. + + The RGB. + The ib. + The cb. + + + + Finalizes the hash computation after the last data is processed by the cryptographic stream object. + + + The computed hash code. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Gets the size of the block. + + + The size of the block. + + + + + Gets or sets the key to use in the hash algorithm. + + The key to use in the hash algorithm. + + + + Implements RSA digital signature algorithm. + + + + + Initializes a new instance of the class. + + The RSA key. + + + + Hashes the specified input. + + The input. + + Hashed data. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged ResourceMessages. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Contains RSA private and public key + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + DER encoded private key data. + + + + Initializes a new instance of the class. + + The modulus. + The exponent. + The d. + The p. + The q. + The inverse Q. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged ResourceMessages. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Gets the modulus. + + + + + Gets the exponent. + + + + + Gets the D. + + + + + Gets the P. + + + + + Gets the Q. + + + + + Gets the DP. + + + + + Gets the DQ. + + + + + Gets the inverse Q. + + + + + Gets the length of the key. + + + The length of the key. + + + + + Gets the digital signature. + + + + + Gets or sets the public. + + + The public. + + + + + Represents "diffie-hellman-group14-sha1" algorithm implementation. + + + + + Gets algorithm name. + + + + + Gets the group prime. + + + The group prime. + + + + + Represents "diffie-hellman-group1-sha1" algorithm implementation. + + + + + Gets algorithm name. + + + + + Gets the group prime. + + + The group prime. + + + + + Represents "diffie-hellman-group-exchange-sha1" algorithm implementation. + + + + + Gets algorithm name. + + + + + Represents "diffie-hellman-group-exchange-sha256" algorithm implementation. + + + + + Hashes the specified data bytes. + + Data to hash. + + Hashed bytes + + + + + Gets algorithm name. + + + + + Implements key support for host algorithm. + + + + + Initializes a new instance of the class. + + Host key name. + Host key. + + + + Initializes a new instance of the class. + + Host key name. + Host key. + Host key encoded data. + + + + Signs the specified data. + + The data. + + Signed data. + + + + + Verifies the signature. + + The data. + The signature. + + True is signature was successfully verifies; otherwise false. + + + + + Gets the key. + + + + + Gets the public key data. + + + + + Called when type specific data need to be loaded. + + + + + Called when type specific data need to be saved. + + + + + Gets or sets the name of the algorithm. + + + The name of the algorithm. + + + + + Gets or sets the signature. + + + The signature. + + + + + Provides functionality to connect and interact with SSH server. + + + Provides functionality to connect and interact with SSH server. + + + + + Specifies maximum packet size defined by the protocol. + + + + + Holds the initial local window size for the channels. + + + 2 MB. + + + + + Holds the maximum size of channel data packets that we receive. + + + 64 KB. + + + + + Specifies an infinite waiting period. + + + The value of this field is -1 millisecond. + + + + + Specifies an infinite waiting period. + + + The value of this field is -1. + + + + + Controls how many authentication attempts can take place at the same time. + + + Some server may restrict number to prevent authentication attacks + + + + + Holds metada about session messages + + + + + Holds connection socket. + + + + + Holds locker object for the socket + + + + + Holds a that is signaled when the message listener loop has completed. + + + + + Specifies outbound packet number + + + + + Specifies incoming packet number + + + + + WaitHandle to signal that last service request was accepted + + + + + WaitHandle to signal that exception was thrown by another thread. + + + + + WaitHandle to signal that key exchange was completed. + + + + + WaitHandle to signal that bytes have been read from the socket. + + + + + WaitHandle to signal that key exchange is in progress. + + + + + Exception that need to be thrown by waiting thread + + + + + Specifies whether connection is authenticated + + + + + Specifies whether user issued Disconnect command or not + + + + + Initializes a new instance of the class. + + The connection info. + is null. + + + + Connects to the server. + + Socket connection to the SSH server or proxy server could not be established, or an error occurred while resolving the hostname. + SSH session could not be established. + Authentication of SSH session failed. + Failed to establish proxy connection. + + + + Disconnects from the server. + + + This sends a SSH_MSG_DISCONNECT message to the server, waits for the + server to close the socket on its end and subsequently closes the client socket. + + + + + Waits for the specified handle or the exception handle for the receive thread + to signal within the connection timeout. + + The wait handle. + A received package was invalid or failed the message integrity check. + None of the handles are signaled in time and the session is not disconnecting. + A socket error was signaled while receiving messages from the server. + + When neither handles are signaled in time and the session is not closing, then the + session is disconnected. + + + + + Waits for the specified handle or the exception handle for the receive thread + to signal within the specified timeout. + + The wait handle. + The time to wait for any of the handles to become signaled. + A received package was invalid or failed the message integrity check. + None of the handles are signaled in time and the session is not disconnecting. + A socket error was signaled while receiving messages from the server. + + When neither handles are signaled in time and the session is not closing, then the + session is disconnected. + + + + + Waits for the specified handle or the exception handle for the receive thread + to signal within the connection timeout. + + The wait handle. + A received package was invalid or failed the message integrity check. + None of the handles are signaled in time and the session is not disconnecting. + A socket error was signaled while receiving messages from the server. + + When neither handles are signaled in time and the session is not closing, then the + session is disconnected. + + + + + Waits for the specified handle or the exception handle for the receive thread + to signal within the specified timeout. + + The wait handle. + The time to wait for any of the handles to become signaled. + A received package was invalid or failed the message integrity check. + None of the handles are signaled in time and the session is not disconnecting. + A socket error was signaled while receiving messages from the server. + + + + Sends a message to the server. + + The message to send. + The client is not connected. + The operation timed out. + The size of the packet exceeds the maximum size defined by the protocol. + + + + Sends a message to the server. + + The message to send. + + true if the message was sent to the server; otherwise, false. + + The size of the packet exceeds the maximum size defined by the protocol. + + This methods returns false when the attempt to send the message results in a + or a . + + + + + Receives the message from the server. + + Incoming SSH message. + + + + + Handles the message. + + + The message. + + + + Called when received. + + message. + + + + Called when received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when client is disconnecting from the server. + + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Called when message received. + + message. + + + + Reads the specified length of bytes from the server. + + The length. + + The bytes read from the server. + + + + + Registers SSH message with the session. + + The name of the message to register with the session. + + + + Unregister SSH message from the session. + + The name of the message to unregister with the session. + + + + Loads the message. + + Message data. + New message + + + + Disconnects and disposes the socket. + + + + + Listens for incoming message from the server and handles them. This method run as a task on separate thread. + + + + + Raises the event. + + The exp. + + + + Resets connection-specific information to ensure state of a previous connection + does not affect new connections. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged ResourceMessages. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Create a new SSH session channel. + + + A new SSH session channel. + + + + + Create a new channel for a locally forwarded TCP/IP port. + + + A new channel for a locally forwarded TCP/IP port. + + + + + Creates a "forwarded-tcpip" SSH channel. + + + A new "forwarded-tcpip" SSH channel. + + + + + Sends a message to the server. + + The message to send. + The client is not connected. + The operation timed out. + The size of the packet exceeds the maximum size defined by the protocol. + + + + Sends a message to the server. + + The message to send. + + true if the message was sent to the server; otherwise, false. + + The size of the packet exceeds the maximum size defined by the protocol. + + This methods returns false when the attempt to send the message results in a + or a . + + + + + Holds the lock object to ensure read access to the socket is synchronized. + + + + + Gets a value indicating whether the socket is connected. + + true if the socket is connected; otherwise, false + + + As a first check we verify whether is + true. However, this only returns the state of the socket as of + the last I/O operation. Therefore we use the combination of Socket.Poll + with mode SelectRead and Socket.Available to verify if the socket is + still connected. + + + The MSDN doc mention the following on the return value of + with mode : + + + true if data is available for reading; + + + true if the connection has been closed, reset, or terminated; otherwise, returns false. + + + + + Conclusion: when the return value is true - but no data is available for reading - then + the socket is no longer connected. + + + When a is used from multiple threads, there's a race condition + between the invocation of and the moment + when the value of is obtained. As a workaround, we signal + when bytes are read from the . + + + + + + Establishes a socket connection to the specified host and port. + + The host name of the server to connect to. + The port to connect to. + The connection failed to establish within the configured . + An error occurred trying to establish the connection. + + + + Closes the socket and allows the socket to be reused after the current connection is closed. + + An error occurred when trying to access the socket. + + + + Performs a blocking read on the socket until a line is read. + + The line read from the socket, or null when the remote server has shutdown and all data has been received. + A that represents the time to wait until a line is read. + The read has timed-out. + An error occurred when trying to access the socket. + + + + Performs a blocking read on the socket until bytes are received. + + The number of bytes to read. + The buffer to read to. + The socket is closed. + The read failed. + + + + Writes the specified data to the server. + + The data to write to the server. + The write has timed-out. + The write failed. + + + + Executes the specified action in a separate thread. + + The action to execute. + + + + Gets the session semaphore that controls session channels. + + + The session semaphore. + + + + + Gets the next channel number. + + + The next channel number. + + + + + Gets a value indicating whether the session is connected. + + + true if the session is connected; otherwise, false. + + + This methods returns true in all but the following cases: + + + The SSH_MSG_DISCONNECT message - which is used to disconnect from the server - has been sent. + + + The client has not been authenticated successfully. + + + The listener thread - which is used to receive messages from the server - has stopped. + + + The socket used to communicate with the server is no longer connected. + + + + + + + Gets the session id. + + + The session id, or null if the client has not been authenticated. + + + + + Gets the client init message. + + The client init message. + + + + Gets or sets the server version string. + + The server version. + + + + Gets or sets the client version string. + + The client version. + + + + Gets or sets the connection info. + + The connection info. + + + + Occurs when an error occurred. + + + + + Occurs when session has been disconnected from the server. + + + + + Occurs when host key received. + + + + + Occurs when message is received from the server. + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received + + + + + Occurs when message received and is not handled by any of the event handlers + + + + + Gets or sets the connection info. + + The connection info. + + + + SSH_FXF_READ + + + + + SSH_FXF_WRITE + + + + + SSH_FXF_APPEND + + + + + SSH_FXF_CREAT + + + + + SSH_FXF_TRUNC + + + + + SSH_FXF_EXCL + + + + + Initializes a new instance of the class. + + The protocol version. + The request id. + Specifies the path name of the new link to create. + Specifies the path of a target object to which the newly created link will refer. In the case of a symbolic link, this path may not exist. + if set to false the link should be a hard link, or a second directory entry referring to the same file or directory object. + The status action. + + + + Encapsulates the results of an asynchronous download operation. + + + + + Initializes a new instance of the class. + + The async callback. + The state. + + + + Updates asynchronous operation status information. + + Number of downloaded bytes. + + + + Gets or sets a value indicating whether to cancel asynchronous download operation. + + + true if download operation to be canceled; otherwise, false. + + + Download operation will be canceled after finishing uploading current buffer. + + + + + Gets the number of downloaded bytes. + + + + + Represents SFTP file information + + + + + Initializes a new instance of the class. + + The SFTP session. + Full path of the directory or file. + Attributes of the directory or file. + or is null. + + + + Sets file permissions. + + The mode. + + + + Permanently deletes a file on remote machine. + + + + + Moves a specified file to a new location on remote machine, providing the option to specify a new file name. + + The path to move the file to, which can specify a different file name. + is null. + + + + Updates file status on the server. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets the file attributes. + + + + + Gets the full path of the directory or file. + + + + + For files, gets the name of the file. For directories, gets the name of the last directory in the hierarchy if a hierarchy exists. + Otherwise, the Name property gets the name of the directory. + + + + + Gets or sets the time the current file or directory was last accessed. + + + The time that the current file or directory was last accessed. + + + + + Gets or sets the time when the current file or directory was last written to. + + + The time the current file was last written. + + + + + Gets or sets the time, in coordinated universal time (UTC), the current file or directory was last accessed. + + + The time that the current file or directory was last accessed. + + + + + Gets or sets the time, in coordinated universal time (UTC), when the current file or directory was last written to. + + + The time the current file was last written. + + + + + Gets or sets the size, in bytes, of the current file. + + + The size of the current file in bytes. + + + + + Gets or sets file user id. + + + File user id. + + + + + Gets or sets file group id. + + + File group id. + + + + + Gets a value indicating whether file represents a socket. + + + true if file represents a socket; otherwise, false. + + + + + Gets a value indicating whether file represents a symbolic link. + + + true if file represents a symbolic link; otherwise, false. + + + + + Gets a value indicating whether file represents a regular file. + + + true if file represents a regular file; otherwise, false. + + + + + Gets a value indicating whether file represents a block device. + + + true if file represents a block device; otherwise, false. + + + + + Gets a value indicating whether file represents a directory. + + + true if file represents a directory; otherwise, false. + + + + + Gets a value indicating whether file represents a character device. + + + true if file represents a character device; otherwise, false. + + + + + Gets a value indicating whether file represents a named pipe. + + + true if file represents a named pipe; otherwise, false. + + + + + Gets or sets a value indicating whether the owner can read from this file. + + + true if owner can read from this file; otherwise, false. + + + + + Gets or sets a value indicating whether the owner can write into this file. + + + true if owner can write into this file; otherwise, false. + + + + + Gets or sets a value indicating whether the owner can execute this file. + + + true if owner can execute this file; otherwise, false. + + + + + Gets or sets a value indicating whether the group members can read from this file. + + + true if group members can read from this file; otherwise, false. + + + + + Gets or sets a value indicating whether the group members can write into this file. + + + true if group members can write into this file; otherwise, false. + + + + + Gets or sets a value indicating whether the group members can execute this file. + + + true if group members can execute this file; otherwise, false. + + + + + Gets or sets a value indicating whether the others can read from this file. + + + true if others can read from this file; otherwise, false. + + + + + Gets or sets a value indicating whether the others can write into this file. + + + true if others can write into this file; otherwise, false. + + + + + Gets or sets a value indicating whether the others can execute this file. + + + true if others can execute this file; otherwise, false. + + + + + Gets the extension part of the file. + + + File extensions. + + + + + Contains SFTP file attributes. + + + + + Sets the permissions. + + The mode. + + + + Gets or sets the time the current file or directory was last accessed. + + + The time that the current file or directory was last accessed. + + + + + Gets or sets the time when the current file or directory was last written to. + + + The time the current file was last written. + + + + + Gets or sets the size, in bytes, of the current file. + + + The size of the current file in bytes. + + + + + Gets or sets file user id. + + + File user id. + + + + + Gets or sets file group id. + + + File group id. + + + + + Gets a value indicating whether file represents a socket. + + + true if file represents a socket; otherwise, false. + + + + + Gets a value indicating whether file represents a symbolic link. + + + true if file represents a symbolic link; otherwise, false. + + + + + Gets a value indicating whether file represents a regular file. + + + true if file represents a regular file; otherwise, false. + + + + + Gets a value indicating whether file represents a block device. + + + true if file represents a block device; otherwise, false. + + + + + Gets a value indicating whether file represents a directory. + + + true if file represents a directory; otherwise, false. + + + + + Gets a value indicating whether file represents a character device. + + + true if file represents a character device; otherwise, false. + + + + + Gets a value indicating whether file represents a named pipe. + + + true if file represents a named pipe; otherwise, false. + + + + + Gets a value indicating whether the owner can read from this file. + + + true if owner can read from this file; otherwise, false. + + + + + Gets a value indicating whether the owner can write into this file. + + + true if owner can write into this file; otherwise, false. + + + + + Gets a value indicating whether the owner can execute this file. + + + true if owner can execute this file; otherwise, false. + + + + + Gets a value indicating whether the group members can read from this file. + + + true if group members can read from this file; otherwise, false. + + + + + Gets a value indicating whether the group members can write into this file. + + + true if group members can write into this file; otherwise, false. + + + + + Gets a value indicating whether the group members can execute this file. + + + true if group members can execute this file; otherwise, false. + + + + + Gets a value indicating whether the others can read from this file. + + + true if others can read from this file; otherwise, false. + + + + + Gets a value indicating whether the others can write into this file. + + + true if others can write into this file; otherwise, false. + + + + + Gets a value indicating whether the others can execute this file. + + + true if others can execute this file; otherwise, false. + + + + + Gets or sets the extensions. + + + The extensions. + + + + + Exposes a System.IO.Stream around a remote SFTP file, supporting both synchronous and asynchronous read and write operations. + + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Closes the current stream and releases any resources (such as sockets and file handles) associated with the current stream. + + + + + Clears all buffers for this stream and causes any buffered data to be written to the file. + + An I/O error occurs. + Stream is closed. + + + + Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read. + + An array of bytes. When this method returns, the buffer contains the specified byte array with the values between and ( + - 1) replaced by the bytes read from the current source. + The zero-based byte offset in at which to begin storing the data read from the current stream. + The maximum number of bytes to be read from the current stream. + + The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached. + + The sum of and is larger than the buffer length. + is null. + or is negative. + An I/O error occurs. + The stream does not support reading. + Methods were called after the stream was closed. + + + + Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream. + + + The unsigned byte cast to an Int32, or -1 if at the end of the stream. + + The stream does not support reading. + Methods were called after the stream was closed. + Read operation failed. + + + + Sets the position within the current stream. + + A byte offset relative to the parameter. + A value of type indicating the reference point used to obtain the new position. + + The new position within the current stream. + + An I/O error occurs. + The stream does not support seeking, such as if the stream is constructed from a pipe or console output. + Methods were called after the stream was closed. + + + + When overridden in a derived class, sets the length of the current stream. + + The desired length of the current stream in bytes. + An I/O error occurs. + The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output. + Methods were called after the stream was closed. + must be greater than zero. + + + + Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written. + + An array of bytes. This method copies bytes from to the current stream. + The zero-based byte offset in at which to begin copying bytes to the current stream. + The number of bytes to be written to the current stream. + The sum of and is greater than the buffer length. + is null. + or is negative. + An I/O error occurs. + The stream does not support writing. + Methods were called after the stream was closed. + + + + Writes a byte to the current position in the stream and advances the position within the stream by one byte. + + The byte to write to the stream. + An I/O error occurs. + The stream does not support writing, or the stream is already closed. + Methods were called after the stream was closed. + + + + Releases the unmanaged resources used by the and optionally releases the managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Flushes the read data from the buffer. + + + + + Flush any buffered write data to the file. + + + + + Setups the read. + + + + + Setups the write. + + + + + Gets a value indicating whether the current stream supports reading. + + true if the stream supports reading; otherwise, false. + + + + Gets a value indicating whether the current stream supports seeking. + + true if the stream supports seeking; otherwise, false. + + + + Gets a value indicating whether the current stream supports writing. + + true if the stream supports writing; otherwise, false. + + + + Indicates whether timeout properties are usable for . + + + true in all cases. + + + + + Gets the length in bytes of the stream. + + A long value representing the length of the stream in bytes. + A class derived from Stream does not support seeking. + Methods were called after the stream was closed. + IO operation failed. + + + + Gets or sets the position within the current stream. + + The current position within the stream. + + An I/O error occurs. + + The stream does not support seeking. + + Methods were called after the stream was closed. + + + + Gets a value indicating whether the FileStream was opened asynchronously or synchronously. + + + true if this instance is async; otherwise, false. + + + + + Gets the name of the FileStream that was passed to the constructor. + + + + + Gets the operating system file handle for the file that the current SftpFileStream object encapsulates. + + + + + Gets or sets the operation timeout. + + + The timeout. + + + + + Contains File system information exposed by statvfs@openssh.com request. + + + + + Initializes a new instance of the class. + + The bsize. + The frsize. + The blocks. + The bfree. + The bavail. + The files. + The ffree. + The favail. + The sid. + The flag. + The namemax. + + + + Gets the size of the block. + + + The size of the block. + + + + + Gets the total blocks. + + + The total blocks. + + + + + Gets the free blocks. + + + The free blocks. + + + + + Gets the available blocks. + + + The available blocks. + + + + + Gets the total nodes. + + + The total nodes. + + + + + Gets the free nodes. + + + The free nodes. + + + + + Gets the available nodes. + + + The available nodes. + + + + + Gets the sid. + + + The sid. + + + + + Gets a value indicating whether this instance is read only. + + + true if this instance is read only; otherwise, false. + + + + + Gets a value indicating whether [supports set uid]. + + + true if [supports set uid]; otherwise, false. + + + + + Gets the max name lenght. + + + The max name lenght. + + + + + Encapsulates the results of an asynchronous directory list operation. + + + + + Initializes a new instance of the class. + + The async callback. + The state. + + + + Updates asynchronous operation status information. + + The files read. + + + + Gets the number of files read so far. + + + + + SSH_FXP_INIT + + + + + SSH_FXP_VERSION + + + + + SSH_FXP_OPEN + + + + + SSH_FXP_CLOSE + + + + + SSH_FXP_READ + + + + + SSH_FXP_WRITE + + + + + SSH_FXP_LSTAT + + + + + SSH_FXP_FSTAT + + + + + SSH_FXP_SETSTAT + + + + + SSH_FXP_FSETSTAT + + + + + SSH_FXP_OPENDIR + + + + + SSH_FXP_READDIR + + + + + SSH_FXP_REMOVE + + + + + SSH_FXP_MKDIR + + + + + SSH_FXP_RMDIR + + + + + SSH_FXP_REALPATH + + + + + SSH_FXP_STAT + + + + + SSH_FXP_RENAME + + + + + SSH_FXP_READLINK + + + + + SSH_FXP_SYMLINK + + + + + SSH_FXP_LINK + + + + + SSH_FXP_BLOCK + + + + + SSH_FXP_UNBLOCK + + + + + SSH_FXP_STATUS + + + + + SSH_FXP_HANDLE + + + + + SSH_FXP_DATA + + + + + SSH_FXP_NAME + + + + + SSH_FXP_ATTRS + + + + + SSH_FXP_EXTENDED + + + + + SSH_FXP_EXTENDED_REPLY + + + + + Changes the current working directory to the specified path. + + The new working directory. + + + + Resolves a given path into an absolute path on the server. + + The path to resolve. + + The absolute path. + + + + + Performs SSH_FXP_OPEN request + + The path. + The flags. + if set to true returns null instead of throwing an exception. + File handle. + + + + Performs SSH_FXP_CLOSE request. + + The handle. + + + + Performs SSH_FXP_READ request. + + The handle. + The offset. + The length. + data array; null if EOF + + + + Performs SSH_FXP_WRITE request. + + The handle. + The offset. + The data to send. + The wait event handle if needed. + The callback to invoke when the write has completed. + + + + Performs SSH_FXP_LSTAT request. + + The path. + + File attributes + + + + + Performs SSH_FXP_FSTAT request. + + The handle. + + File attributes + + + + + Performs SSH_FXP_SETSTAT request. + + The path. + The attributes. + + + + Performs SSH_FXP_FSETSTAT request. + + The handle. + The attributes. + + + + Performs SSH_FXP_OPENDIR request + + The path. + if set to true returns null instead of throwing an exception. + File handle. + + + + Performs SSH_FXP_READDIR request + + The handle. + + + + + Performs SSH_FXP_REMOVE request. + + The path. + + + + Performs SSH_FXP_MKDIR request. + + The path. + + + + Performs SSH_FXP_RMDIR request. + + The path. + + + + Performs SSH_FXP_REALPATH request + + The path. + if set to true returns null instead of throwing an exception. + + + + + Performs SSH_FXP_STAT request. + + The path. + if set to true returns null instead of throwing an exception. + + File attributes + + + + + Performs SSH_FXP_RENAME request. + + The old path. + The new path. + + + + Performs SSH_FXP_READLINK request. + + The path. + if set to true returns null instead of throwing an exception. + + + + + Performs SSH_FXP_SYMLINK request. + + The linkpath. + The targetpath. + + + + Performs posix-rename@openssh.com extended request. + + The old path. + The new path. + + + + Performs statvfs@openssh.com extended request. + + The path. + if set to true [null on error]. + + + + + Performs fstatvfs@openssh.com extended request. + + The file handle. + if set to true [null on error]. + + + + + + Performs hardlink@openssh.com extended request. + + The old path. + The new path. + + + + Calculates the optimal size of the buffer to read data from the channel. + + The buffer size configured on the client. + + The optimal size of the buffer to read data from the channel. + + + + + Calculates the optimal size of the buffer to write data on the channel. + + The buffer size configured on the client. + The file handle. + + The optimal size of the buffer to write data on the channel. + + + Currently, we do not take the remote window size into account. + + + + + Gets the remote working directory. + + + The remote working directory. + + + + + Gets the SFTP protocol version. + + + The SFTP protocol version. + + + + + Gets the next request id for sftp session. + + + + + Encapsulates the results of an asynchronous directory synchronization operation. + + + + + Initializes a new instance of the class. + + The async callback. + The state. + + + + Updates asynchronous operation status information. + + The files read. + + + + Gets the number of files read so far. + + + + + Encapsulates the results of an asynchronous upload operation. + + + + + Initializes a new instance of the class. + + The async callback. + The state. + + + + Updates asynchronous operation status information. + + Number of uploaded bytes. + + + + Gets or sets a value indicating whether to cancel asynchronous upload operation + + + true if upload operation to be canceled; otherwise, false. + + + Upload operation will be canceled after finishing uploading current buffer. + + + + + Gets the number of uploaded bytes. + + + + + SSH_FX_OK + + + + + SSH_FX_EOF + + + + + SSH_FX_NO_SUCH_FILE + + + + + SSH_FX_PERMISSION_DENIED + + + + + SSH_FX_FAILURE + + + + + SSH_FX_BAD_MESSAGE + + + + + SSH_FX_NO_CONNECTION + + + + + SSH_FX_CONNECTION_LOST + + + + + SSH_FX_OP_UNSUPPORTED + + + + + SSH_FX_INVALID_HANDLE + + + + + SSH_FX_NO_SUCH_PATH + + + + + SSH_FX_FILE_ALREADY_EXISTS + + + + + SSH_FX_WRITE_PROTECT + + + + + SSH_FX_NO_MEDIA + + + + + SSH_FX_NO_SPACE_ON_FILESYSTEM + + + + + SSH_FX_QUOTA_EXCEEDED + + + + + SSH_FX_UNKNOWN_PRINCIPAL + + + + + SSH_FX_LOCK_CONFLICT + + + + + SSH_FX_DIR_NOT_EMPTY + + + + + SSH_FX_NOT_A_DIRECTORY + + + + + SSH_FX_INVALID_FILENAME + + + + + SSH_FX_LINK_LOOP + + + + + SSH_FX_CANNOT_DELETE + + + + + SSH_FX_INVALID_PARAMETER + + + + + SSH_FX_FILE_IS_A_DIRECTORY + + + + + SSH_FX_BYTE_RANGE_LOCK_CONFLICT + + + + + SSH_FX_BYTE_RANGE_LOCK_REFUSED + + + + + SSH_FX_DELETE_PENDING + + + + + SSH_FX_FILE_CORRUPT + + + + + SSH_FX_OWNER_INVALID + + + + + SSH_FX_GROUP_INVALID + + + + + SSH_FX_NO_MATCHING_BYTE_RANGE_LOCK + + + + + Represents instance of the SSH shell object + + + Represents instance of the SSH shell object + + + + + Initializes a new instance of the class. + + The session. + The input. + The output. + The extended output. + Name of the terminal. + The columns. + The rows. + The width. + The height. + The terminal modes. + Size of the buffer for output stream. + + + + Starts this shell. + + Shell is started. + + + + Stops this shell. + + Shell is not started. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged ResourceMessages. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + is null. + + + + Gets a value indicating whether this shell is started. + + + true if started is started; otherwise, false. + + + + + Occurs when shell is starting. + + + + + Occurs when shell is started. + + + + + Occurs when shell is stopping. + + + + + Occurs when shell is stopped. + + + + + Occurs when an error occurred. + + + + + Provides client connection to SSH server. + + + + + Holds the list of forwarded ports + + + + + Holds a value indicating whether the current instance is disposed. + + + true if the current instance is disposed; otherwise, false. + + + + + Initializes a new instance of the class. + + The connection info. + + + + + + + is null. + + + + Initializes a new instance of the class. + + Connection host. + Connection port. + Authentication username. + Authentication password. + is null. + is invalid, or is null or contains whitespace characters. + is not within and . + + + + Initializes a new instance of the class. + + Connection host. + Authentication username. + Authentication password. + + + + is null. + is invalid, or is null or contains whitespace characters. + + + + Initializes a new instance of the class. + + Connection host. + Connection port. + Authentication username. + Authentication private key file(s) . + + + + + is null. + is invalid, -or- is null or contains whitespace characters. + is not within and . + + + + Initializes a new instance of the class. + + Connection host. + Authentication username. + Authentication private key file(s) . + + + + + is null. + is invalid, -or- is null or contains whitespace characters. + + + + Initializes a new instance of the class. + + The connection info. + Specified whether this instance owns the connection info. + is null. + + If is true, then the + connection info will be disposed when this instance is disposed. + + + + + Initializes a new instance of the class. + + The connection info. + Specified whether this instance owns the connection info. + The factory to use for creating new services. + is null. + is null. + + If is true, then the + connection info will be disposed when this instance is disposed. + + + + + Called when client is disconnecting from the server. + + + + + Adds the forwarded port. + + The port. + + + + + Forwarded port is already added to a different client. + is null. + Client is not connected. + + + + Stops and removes the forwarded port from the list. + + Forwarded port. + is null. + + + + Creates the command to be executed. + + The command text. + object. + Client is not connected. + + + + Creates the command to be executed with specified encoding. + + The command text. + The encoding to use for results. + object which uses specified encoding. + This method will change current default encoding. + Client is not connected. + or is null. + + + + Creates and executes the command. + + The command text. + Returns an instance of with execution results. + This method internally uses asynchronous calls. + + + + + CommandText property is empty. + Invalid Operation - An existing channel was used to execute this command. + Asynchronous operation is already in progress. + Client is not connected. + is null. + + + + Creates the shell. + + The input. + The output. + The extended output. + Name of the terminal. + The columns. + The rows. + The width. + The height. + The terminal mode. + Size of the internal read buffer. + + Returns a representation of a object. + + Client is not connected. + + + + Creates the shell. + + The input. + The output. + The extended output. + Name of the terminal. + The columns. + The rows. + The width. + The height. + The terminal mode. + + Returns a representation of a object. + + Client is not connected. + + + + Creates the shell. + + The input. + The output. + The extended output. + + Returns a representation of a object. + + Client is not connected. + + + + Creates the shell. + + The encoding to use to send the input. + The input. + The output. + The extended output. + Name of the terminal. + The columns. + The rows. + The width. + The height. + The terminal mode. + Size of the internal read buffer. + + Returns a representation of a object. + + Client is not connected. + + + + Creates the shell. + + The encoding. + The input. + The output. + The extended output. + Name of the terminal. + The columns. + The rows. + The width. + The height. + The terminal modes. + + Returns a representation of a object. + + Client is not connected. + + + + Creates the shell. + + The encoding. + The input. + The output. + The extended output. + + Returns a representation of a object. + + Client is not connected. + + + + Creates the shell stream. + + Name of the terminal. + The columns. + The rows. + The width. + The height. + Size of the buffer. + + Reference to Created ShellStream object. + + Client is not connected. + + + + Creates the shell stream. + + Name of the terminal. + The columns. + The rows. + The width. + The height. + Size of the buffer. + The terminal mode values. + + Reference to Created ShellStream object. + + Client is not connected. + + + + Stops forwarded ports. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Gets the list of forwarded ports. + + + + + Represents SSH command that can be executed. + + + Represents SSH command that can be executed. + + + + + Initializes a new instance of the class. + + The session. + The command text. + The encoding to use for the results. + Either , is null. + + + + Begins an asynchronous command execution. + + + An that represents the asynchronous command execution, which could still be pending. + + + + + Asynchronous operation is already in progress. + Invalid operation. + CommandText property is empty. + Client is not connected. + Operation has timed out. + Asynchronous operation is already in progress. + CommandText property is empty. + + + + Begins an asynchronous command execution. + + An optional asynchronous callback, to be called when the command execution is complete. + + An that represents the asynchronous command execution, which could still be pending. + + Asynchronous operation is already in progress. + Invalid operation. + CommandText property is empty. + Client is not connected. + Operation has timed out. + Asynchronous operation is already in progress. + CommandText property is empty. + + + + Begins an asynchronous command execution. + + An optional asynchronous callback, to be called when the command execution is complete. + A user-provided object that distinguishes this particular asynchronous read request from other requests. + + An that represents the asynchronous command execution, which could still be pending. + + Asynchronous operation is already in progress. + Invalid operation. + CommandText property is empty. + Client is not connected. + Operation has timed out. + Asynchronous operation is already in progress. + CommandText property is empty. + + + + Begins an asynchronous command execution. + + The command text. + An optional asynchronous callback, to be called when the command execution is complete. + A user-provided object that distinguishes this particular asynchronous read request from other requests. + + An that represents the asynchronous command execution, which could still be pending. + + Client is not connected. + Operation has timed out. + + + + Waits for the pending asynchronous command execution to complete. + + The reference to the pending asynchronous request to finish. + Command execution result. + + + + Either the IAsyncResult object did not come from the corresponding async method on this type, or EndExecute was called multiple times with the same IAsyncResult. + + + + Executes command specified by property. + + Command execution result + + + + + + Client is not connected. + Operation has timed out. + + + + Cancels command execution in asynchronous scenarios. + + + + + Executes the specified command text. + + The command text. + Command execution result + Client is not connected. + Operation has timed out. + + + Command '{0}' has timed out. + The actual command will be included in the exception message. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged ResourceMessages. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged ResourceMessages. + + + + Releases unmanaged resources and performs other cleanup operations before the + is reclaimed by garbage collection. + + + + + Executes the specified action in a separate thread. + + The action to execute. + + + + Gets the command text. + + + + + Gets or sets the command timeout. + + + The command timeout. + + + + + + + + Gets the command exit status. + + + + + + + + Gets the output stream. + + + + + + + + Gets the extended output stream. + + + + + + + + Gets the command execution result. + + + + + + + + Gets the command execution error. + + + + + +
+
diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.Formatting.dll b/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.Formatting.dll new file mode 100644 index 0000000..2471549 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.Formatting.dll differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.Formatting.xml b/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.Formatting.xml new file mode 100644 index 0000000..be4d98a --- /dev/null +++ b/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.Formatting.xml @@ -0,0 +1,1489 @@ + + + + System.Net.Http.Formatting + + + + Extension methods that aid in making formatted requests using . + + + Sends a POST request as an asynchronous operation, with a specified value serialized as JSON. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + The type of object to serialize. + + + Sends a POST request as an asynchronous operation, with a specified value serialized as JSON. Includes a cancellation token to cancel the request. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The type of object to serialize. + + + Sends a POST request as an asynchronous operation, with a specified value serialized as XML. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + The type of object to serialize. + + + Sends a POST request as an asynchronous operation, with a specified value serialized as XML. Includes a cancellation token to cancel the request. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The type of object to serialize. + + + Sends a POST request as an asynchronous operation, with a specified value serialized using the given formatter. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + The formatter used to serialize the value. + The type of object to serialize. + + + Sends a POST request as an asynchronous operation, with a specified value serialized using the given formatter and media type. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + The formatter used to serialize the value. + The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter will be used. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The type of object to serialize. + + + Sends a POST request as an asynchronous operation, with a specified value serialized using the given formatter and media type string. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + The formatter used to serialize the value. + The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter will be used. + The type of object to serialize. + + + Sends a POST request as an asynchronous operation, with a specified value serialized using the given formatter and media type string. Includes a cancellation token to cancel the request. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + The formatter used to serialize the value. + The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter will be used. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The type of object to serialize. + + + Sends a POST request as an asynchronous operation, with a specified value serialized using the given formatter. Includes a cancellation token to cancel the request. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + The formatter used to serialize the value. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The type of object to serialize. + + + Sends a PUT request as an asynchronous operation, with a specified value serialized as JSON. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + The type of object to serialize. + + + Sends a PUT request as an asynchronous operation, with a specified value serialized as JSON. Includes a cancellation token to cancel the request. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The type of object to serialize. + + + Sends a PUT request as an asynchronous operation, with a specified value serialized as XML. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + The type of object to serialize. + + + Sends a PUT request as an asynchronous operation, with a specified value serialized as XML. Includes a cancellation token to cancel the request. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The type of object to serialize. + + + Sends a PUT request as an asynchronous operation, with a specified value serialized using the given formatter. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + The formatter used to serialize the value. + The type of object to serialize. + + + Sends a PUT request as an asynchronous operation, with a specified value serialized using the given formatter and media type. Includes a cancellation token to cancel the request. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + The formatter used to serialize the value. + The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter will be used. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The type of object to serialize. + + + Sends a PUT request as an asynchronous operation, with a specified value serialized using the given formatter and media type string. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + The formatter used to serialize the value. + The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter will be used. + The type of object to serialize. + + + Sends a PUT request as an asynchronous operation, with a specified value serialized using the given formatter and media type string. Includes a cancellation token to cancel the request. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + The formatter used to serialize the value. + The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter will be used. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The type of object to serialize. + + + Sends a PUT request as an asynchronous operation, with a specified value serialized using the given formatter and medai type string. Includes a cancellation token to cancel the request. + A task object representing the asynchronous operation. + The client used to make the request. + The URI the request is sent to. + The value to write into the entity body of the request. + The formatter used to serialize the value. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The type of object to serialize. + + + Represents the factory for creating new instance of . + + + Creates a new instance of the . + A new instance of the . + The list of HTTP handler that delegates the processing of HTTP response messages to another handler. + + + Creates a new instance of the . + A new instance of the . + The inner handler which is responsible for processing the HTTP response messages. + The list of HTTP handler that delegates the processing of HTTP response messages to another handler. + + + Creates a new instance of the which should be pipelined. + A new instance of the which should be pipelined. + The inner handler which is responsible for processing the HTTP response messages. + The list of HTTP handler that delegates the processing of HTTP response messages to another handler. + + + Specifies extension methods to allow strongly typed objects to be read from HttpContent instances. + + + Returns a Task that will yield an object of the specified type <typeparamref name="T" /> from the content instance. + An object instance of the specified type. + The HttpContent instance from which to read. + The type of the object to read. + + + Returns a Task that will yield an object of the specified type <typeparamref name="T" /> from the content instance. + An object instance of the specified type. + The HttpContent instance from which to read. + The collection of MediaTyepFormatter instances to use. + The type of the object to read. + + + Returns a Task that will yield an object of the specified type <typeparamref name="T" /> from the content instance. + An object instance of the specified type. + The HttpContent instance from which to read. + The collection of MediaTypeFormatter instances to use. + The IFormatterLogger to log events to. + The type of the object to read. + + + Returns a Task that will yield an object of the specified type from the content instance. + A Task that will yield an object instance of the specified type. + The HttpContent instance from which to read. + The type of the object to read. + + + Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content. + An object instance of the specified type. + The HttpContent instance from which to read. + The type of the object to read. + The collection of MediaTypeFormatter instances to use. + + + Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content. + An object instance of the specified type. + The HttpContent instance from which to read. + The type of the object to read. + The collection of MediaTypeFormatter instances to use. + The IFormatterLogger to log events to. + + + Extension methods to read HTML form URL-encoded datafrom instances. + + + Determines whether the specified content is HTML form URL-encoded data. + true if the specified content is HTML form URL-encoded data; otherwise, false. + The content. + + + Asynchronously reads HTML form URL-encoded from an instance and stores the results in a object. + A task object representing the asynchronous operation. + The content. + + + Provides extension methods to read and entities from instances. + + + Determines whether the specified content is HTTP request message content. + true if the specified content is HTTP message content; otherwise, false. + The content to check. + + + Determines whether the specified content is HTTP response message content. + true if the specified content is HTTP message content; otherwise, false. + The content to check. + + + Reads the as an . + The parsed instance. + The content to read. + + + Reads the as an . + The parsed instance. + The content to read. + The URI scheme to use for the request URI. + + + Reads the as an . + The parsed instance. + The content to read. + The URI scheme to use for the request URI. + The size of the buffer. + + + Reads the as an . + The parsed instance. + The content to read. + The URI scheme to use for the request URI. + The size of the buffer. + The maximum length of the HTTP header. + + + Reads the as an . + The parsed instance. + The content to read. + + + Reads the as an . + The parsed instance. + The content to read. + The size of the buffer. + + + Reads the as an . + The parsed instance. + The content to read. + The size of the buffer. + The maximum length of the HTTP header. + + + Extension methods to read MIME multipart entities from instances. + + + Determines whether the specified content is MIME multipart content. + true if the specified content is MIME multipart content; otherwise, false. + The content. + + + Determines whether the specified content is MIME multipart content with the specified subtype. + true if the specified content is MIME multipart content with the specified subtype; otherwise, false. + The content. + The MIME multipart subtype to match. + + + Reads all body parts within a MIME multipart message and produces a set of instances as a result. + A <see cref="T:System.Threading.Tasks.Task`1" /> representing the tasks of getting the collection of instances where each instance represents a body part. + An existing instance to use for the object's content. + + + Reads all body parts within a MIME multipart message and produces a set of instances as a result using the streamProvider instance to determine where the contents of each body part is written. + A representing the tasks of getting the collection of instances where each instance represents a body part. + An existing instance to use for the object's content. + A stream provider providing output streams for where to write body parts as they are parsed. + The type of the MIME multipart. + + + Reads all body parts within a MIME multipart message and produces a set of instances as a result using the streamProvider instance to determine where the contents of each body part is written and bufferSize as read buffer size. + A representing the tasks of getting the collection of instances where each instance represents a body part. + An existing instance to use for the object's content. + A stream provider providing output streams for where to write body parts as they are parsed. + Size of the buffer used to read the contents. + The type of the MIME multipart. + + + Derived class which can encapsulate an or an as an entity with media type "application/http". + + + Initializes a new instance of the class encapsulating an . + The instance to encapsulate. + + + Initializes a new instance of the class encapsulating an . + The instance to encapsulate. + + + Releases unmanaged and - optionally - managed resources + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + Gets the HTTP request message. + + + Gets the HTTP response message. + + + Asynchronously serializes the object's content to the given stream. + A instance that is asynchronously serializing the object's content. + The to which to write. + The associated . + + + Computes the length of the stream if possible. + true if the length has been computed; otherwise false. + The computed length of the stream. + + + Provides extension methods for the class. + + + Gets any cookie headers present in the request. + A collection of instances. + The request headers. + + + Gets any cookie headers present in the request that contain a cookie state whose name that matches the specified value. + A collection of instances. + The request headers. + The cookie state name to match. + + + + + Provides extension methods for the class. + + + Adds cookies to a response. Each Set-Cookie header is represented as one instance. A contains information about the domain, path, and other cookie information as well as one or more instances. Each instance contains a cookie name and whatever cookie state is associate with that name. The state is in the form of a which on the wire is encoded as HTML Form URL-encoded data. This representation allows for multiple related "cookies" to be carried within the same Cookie header while still providing separation between each cookie state. A sample Cookie header is shown below. In this example, there are two with names state1 and state2 respectively. Further, each cookie state contains two name/value pairs (name1/value1 and name2/value2) and (name3/value3 and name4/value4). <code> Set-Cookie: state1:name1=value1&amp;name2=value2; state2:name3=value3&amp;name4=value4; domain=domain1; path=path1; </code> + The response headers + The cookie values to add to the response. + + + Represents a multipart file data. + + + Initializes a new instance of the class. + The headers of the multipart file data. + The name of the local file for the multipart file data. + + + Gets or sets the headers of the multipart file data. + The headers of the multipart file data. + + + Gets or sets the name of the local file for the multipart file data. + The name of the local file for the multipart file data. + + + Represents an suited for writing each MIME body parts of the MIME multipart message to a file using a . + + + Initializes a new instance of the class. + The root path where the content of MIME multipart body parts are written to. + + + Initializes a new instance of the class. + The root path where the content of MIME multipart body parts are written to. + The number of bytes buffered for writes to the file. + + + Gets or sets the number of bytes buffered for writes to the file. + The number of bytes buffered for writes to the file. + + + Gets or sets the multipart file data. + The multipart file data. + + + Gets the name of the local file which will be combined with the root path to create an absolute file name where the contents of the current MIME body part will be stored. + A relative filename with no path component. + The headers for the current MIME body part. + + + Gets the stream instance where the message body part is written to. + The instance where the message body part is written to. + The content of HTTP. + The header fields describing the body part. + + + Gets or sets the root path where the content of MIME multipart body parts are written to. + The root path where the content of MIME multipart body parts are written to. + + + An suited for use with HTML file uploads for writing file content to a . The stream provider looks at the <b>Content-Disposition</b> header field and determines an output based on the presence of a <b>filename</b> parameter. If a <b>filename</b> parameter is present in the <b>Content-Disposition</b> header field then the body part is written to a , otherwise it is written to a . This makes it convenient to process MIME Multipart HTML Form data which is a combination of form data and file content. + + + Initializes a new instance of the class. + The root path where the content of MIME multipart body parts are written to. + + + Initializes a new instance of the class. + The root path where the content of MIME multipart body parts are written to. + The number of bytes buffered for writes to the file. + + + Reads the non-file contents as form data + A task that represents the asynchronous operation. + + + Gets a of form data passed as part of the multipart form data. + The of form data. + + + The instance where the message body part is written. + The HTTP content that contains this body part. + Header fields describing the body part. + + + Represents a multipart memory stream provider. + + + Initializes a new instance of the class. + + + Returns the for the . + The for the . + A object. + The HTTP content headers. + + + Represents the provider for the multipart related multistream. + + + Initializes a new instance of the class. + + + Gets the related stream for the provider. + The content headers. + The parent content. + The http content headers. + + + Gets the root content of the . + The root content of the . + + + Represents a stream provider that examines the headers provided by the MIME multipart parser as part of the MIME multipart extension methods (see ) and decides what kind of stream to return for the body part to be written to. + + + Initializes a new instance of the class. + + + Gets or sets the contents for this . + The contents for this . + + + Executes the post processing operation for this . + The asynchronous task for this operation. + + + Gets the stream where to write the body part to. This method is called when a MIME multipart body part has been parsed. + The instance where the message body part is written to. + The content of the HTTP. + The header fields describing the body part. + + + Contains a value as well as an associated that will be used to serialize the value when writing this content. + + + Initializes a new instance of the class. + The type of object this instance will contain. + The value of the object this instance will contain. + The formatter to use when serializing the value. + + + Initializes a new instance of the class. + The type of object this instance will contain. + The value of the object this instance will contain. + The formatter to use when serializing the value. + The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter will be used. + + + Initializes a new instance of the class. + The type of object this instance will contain. + The value of the object this instance will contain. + The formatter to use when serializing the value. + The authoritative value of the Content-Type header. + + + Gets the media-type formatter associated with this content instance. + The . + + + Gets the type of object managed by this instance. + The object type. + + + Asynchronously serializes the object's content to the given stream. + The task object representing the asynchronous operation. + The stream to write to. + The associated . + + + Computes the length of the stream if possible. + true if the length has been computed; otherwise, false. + Receives the computed length of the stream. + + + Gets or sets the value of the content. + The content value. + + + Generic form of . + The type of object this class will contain. + + + Initializes a new instance of the class. + The value of the object this instance will contain. + The formatter to use when serializing the value. + + + Initializes a new instance of the <see cref="T:System.Net.Http.ObjectContent`1" /> class. + The value of the object this instance will contain. + The formatter to use when serializing the value. + The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter will be used. + + + Initializes a new instance of the class. + The value of the object this instance will contain. + The formatter to use when serializing the value. + The authoritative value of the Content-Type header. + + + Enables scenarios where a data producer wants to write directly (either synchronously or asynchronously) using a stream. + + + Initializes a new instance of the class. + An action that is called when an output stream is available, allowing the action to write to it directly. + + + Initializes a new instance of the class. + An action that is called when an output stream is available, allowing the action to write to it directly. + The media type. + + + Initializes a new instance of the class. + An action that is called when an output stream is available, allowing the action to write to it directly. + The media type. + + + Asynchronously serializes the push content into stream. + The serialized push content. + The stream where the push content will be serialized. + The context. + + + Determines whether the stream content has a valid length in bytes. + true if length is a valid length; otherwise, false. + The length in bytes of the stream content. + + + Contains extension methods to allow strongly typed objects to be read from the query component of instances. + + + Parses the query portion of the specified URI. + A that contains the query parameters. + The URI to parse. + + + Reads HTML form URL encoded data provided in the URI query string as an object of a specified type. + true if the query component of the URI can be read as the specified type; otherwise, false. + The URI to read. + The type of object to read. + When this method returns, contains an object that is initialized from the query component of the URI. This parameter is treated as uninitialized. + + + Reads HTML form URL encoded data provided in the URI query string as an object of a specified type. + true if the query component of the URI can be read as the specified type; otherwise, false. + The URI to read. + When this method returns, contains an object that is initialized from the query component of the URI. This parameter is treated as uninitialized. + The type of object to read. + + + Reads HTML form URL encoded data provided in the query component as a object. + true if the query component can be read as ; otherwise false. + The instance from which to read. + An object to be initialized with this instance or null if the conversion cannot be performed. + + + Represents a helper class to allow a synchronous formatter on top of the asynchronous formatter infrastructure. + + + Initializes a new instance of the class. + + + Gets or sets the suggested size of buffer to use with streams in bytes. + The suggested size of buffer to use with streams in bytes. + + + Reads synchronously from the buffered stream. + An object of the given . + The type of the object to deserialize. + The stream from which to read + The , if available. Can be null. + The to log events to. + + + Reads asynchronously from the buffered stream. + A task object representing the asynchronous operation. + The type of the object to deserialize. + The stream from which to read. + The , if available. Can be null. + The to log events to. + + + Writes synchronously to the buffered stream. + The type of the object to serialize. + The object value to write. Can be null. + The stream to which to write. + The , if available. Can be null. + + + Writes asynchronously to the buffered stream. + A task object representing the asynchronous operation. + The type of the object to serialize. + The object value to write. It may be null. + The stream to which to write. + The , if available. Can be null. + The transport context. + + + Represents the result of content negotiation performed using <see cref="M:System.Net.Http.Formatting.IContentNegotiator.Negotiate(System.Type,System.Net.Http.HttpRequestMessage,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter})" /> + + + Create the content negotiation result object. + The formatter. + The preferred media type. Can be null. + + + The formatter chosen for serialization. + + + The media type that is associated with the formatter chosen for serialization. Can be null. + + + The default implementation of , which is used to select a for an or . + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + true to exclude formatters that match only on the object type; otherwise, false. + + + Determines how well each formatter matches an HTTP request. + Returns a collection of objects that represent all of the matches. + The type to be serialized. + The request. + The set of objects from which to choose. + + + If true, exclude formatters that match only on the object type; otherwise, false. + Returns a . + + + Matches a set of Accept header fields against the media types that a formatter supports. + Returns a object that indicates the quality of the match, or null if there is no match. + A list of Accept header values, sorted in descending order of q factor. You can create this list by calling the method. + The formatter to match against. + + + Matches a request against the objects in a media-type formatter. + Returns a object that indicates the quality of the match, or null if there is no match. + The requrst. + The media-type formatter. + + + Match the content type of a request against the media types that a formatter supports. + Returns a object that indicates the quality of the match, or null if there is no match. + The request. + The formatter to match against. + + + Selects the first supported media type of a formatter. + Returns a with set to , or null if there is no match. + The type to match. + The formatter to match against. + + + Performs content negotiating by selecting the most appropriate out of the passed in for the given that can serialize an object of the given . + The result of the negotiation containing the most appropriate instance, or null if there is no appropriate formatter. + The type to be serialized. + The request. + The set of objects from which to choose. + + + Determines the best character encoding for writing the response. + Returns the that is the best match. + The request. + The selected media formatter. + + + Selects the best match among the candidate matches found. + Returns the object that represents the best match. + The collection of matches. + + + Sorts Accept header values in descending order of q factor. + Returns the sorted list of MediaTypeWithQualityHeaderValue objects. + A collection of MediaTypeWithQualityHeaderValue objects, representing the Accept header values. + + + Sorts a list of Accept-Charset, Accept-Encoding, Accept-Language or related header values in descending order or q factor. + Returns the sorted list of StringWithQualityHeaderValue objects. + A collection of StringWithQualityHeaderValue objects, representing the header fields. + + + Evaluates whether a match is better than the current match. + Returns whichever object is a better match. + The current match. + The match to evaluate against the current match. + + + Helper class to serialize <see cref="T:System.Collections.Generic.IEnumerable`1" /> types by delegating them through a concrete implementation."/&gt;. + The interface implementing to proxy. + + + Initialize a DelegatingEnumerable. This constructor is necessary for to work. + + + Initialize a DelegatingEnumerable with an <see cref="T:System.Collections.Generic.IEnumerable`1" />. This is a helper class to proxy <see cref="T:System.Collections.Generic.IEnumerable`1" /> interfaces for . + The <see cref="T:System.Collections.Generic.IEnumerable`1" /> instance to get the enumerator from. + + + This method is not implemented but is required method for serialization to work. Do not use. + The item to add. Unused. + + + Get the enumerator of the associated <see cref="T:System.Collections.Generic.IEnumerable`1" />. + The enumerator of the <see cref="T:System.Collections.Generic.IEnumerable`1" /> source. + + + Get the enumerator of the associated <see cref="T:System.Collections.Generic.IEnumerable`1" />. + The enumerator of the <see cref="T:System.Collections.Generic.IEnumerable`1" /> source. + + + Represent the collection of form data. + + + Initializes a new instance of class. + The pairs. + + + Initializes a new instance of class. + The query. + + + Initializes a new instance of class. + The URI + + + Gets the collection of form data. + The collection of form data. + The key. + + + Gets an enumerable that iterates through the collection. + The enumerable that iterates through the collection. + + + Gets the values of the collection of form data. + The values of the collection of form data. + The key. + + + Reads the collection of form data as a collection of name value. + The collection of form data as a collection of name value. + + + Gets an enumerable that iterates through the collection. + The enumerable that iterates through the collection. + + + + class for handling HTML form URL-ended data, also known as application/x-www-form-urlencoded. + + + Initializes a new instance of the class. + + + Queries whether the can deserializean object of the specified type. + true if the can deserialize the type; otherwise, false. + The type to deserialize. + + + Queries whether the can serializean object of the specified type. + true if the can serialize the type; otherwise, false. + The type to serialize. + + + Gets the default media type for HTML form-URL-encoded data, which is application/x-www-form-urlencoded. + The default media type for HTML form-URL-encoded data + + + Gets or sets the maximum depth allowed by this formatter. + The maximum depth. + + + Gets or sets the size of the buffer when reading the incoming stream. + The buffer size. + + + Asynchronously deserializes an object of the specified type. + A whose result will be the object instance that has been read. + The type of object to deserialize. + The to read. + The for the content being read. + The to log events to. + + + Performs content negotiation. This is the process of selecting a response writer (formatter) in compliance with header values in the request. + + + Performs content negotiating by selecting the most appropriate out of the passed in formatters for the given request that can serialize an object of the given type. + The result of the negotiation containing the most appropriate instance, or null if there is no appropriate formatter. + The type to be serialized. + Request message, which contains the header values used to perform negotiation. + The set of objects from which to choose. + + + Specifies a callback interface that a formatter can use to log errors while reading. + + + Logs an error. + The path to the member for which the error is being logged. + The error message. + + + Logs an error. + The path to the member for which the error is being logged. + The error message to be logged. + + + Defines method that determines whether a given member is required on deserialization. + + + Determines whether a given member is required on deserialization. + true if should be treated as a required member; otherwise false. + The to be deserialized. + + + Represents the class to handle JSON. + + + Initializes a new instance of the class. + + + Determines whether this can read objects of the specified . + true if objects of this can be read, otherwise false. + The type of object that will be read. + + + Determines whether this can write objects of the specified . + true if objects of this can be written, otherwise false. + The type of object that will be written. + + + Creates a JsonSerializerSettings instance with the default settings used by the . + A newly created JsonSerializerSettings instance with the default settings used by the . + + + Gets the default media type for JSON, namely "application/json". + The for JSON. + + + Gets or sets a value indicating whether to indent elements when writing data. + true if to indent elements when writing data; otherwise, false. + + + Gets or sets the maximum depth allowed by this formatter. + The maximum depth allowed by this formatter. + + + Reads an object of the specified from the specified . This method is called during deserialization. + Returns . + The type of object to read. + Thestream from which to read + The content being written. + The to log events to. + + + Gets or sets the JsonSerializerSettings used to configure the JsonSerializer. + The JsonSerializerSettings used to configure the JsonSerializer. + + + Gets or sets a value indicating whether to use by default. + true if to by default; otherwise, false. + + + Writes an object of the specified to the specified . This method is called during serialization. + A that will write the value to the stream. + The type of object to write. + The object to write. + The to which to write. + The where the content is being written. + The . + + + Base class to handle serializing and deserializing strongly-typed objects using . + + + Initializes a new instance of the class. + + + Queries whether this can deserializean object of the specified type. + true if the can deserialize the type; otherwise, false. + The type to deserialize. + + + Queries whether this can serializean object of the specified type. + true if the can serialize the type; otherwise, false. + The type to serialize. + + + Gets the default value for the specified type. + The default value. + The type for which to get the default value. + + + Returns a specialized instance of the that can format a response for the given parameters. + Returns . + The type to format. + The request. + The media type. + + + Gets or sets the maximum number of keys stored in a T: . + The maximum number of keys. + + + Gets the mutable collection of objects that match HTTP requests to media types. + The collection. + + + Asynchronously deserializes an object of the specified type. + A whose result will be an object of the given type. + The type of the object to deserialize. + The to read. + The , if available. It may be null. + The to log events to. + Derived types need to support reading. + + + Gets or sets the instance used to determine required members. + The instance. + + + Determines the best character encoding for reading or writing an HTTP entity body, given a set of content headers. + The encoding that is the best match. + The content headers. + + + Sets the default headers for content that will be formatted using this formatter. This method is called from the constructor. This implementation sets the Content-Type header to the value of mediaType if it is not null. If it is null it sets the Content-Type to the default media type of this formatter. If the Content-Type does not specify a charset it will set it using this formatters configured . + The type of the object being serialized. See . + The content headers that should be configured. + The authoritative media type. Can be null. + + + Gets the mutable collection of character encodings supported bythis . + The collection of objects. + + + Gets the mutable collection of media types supported bythis . + The collection of objects. + + + Asynchronously writes an object of the specified type. + A that will perform the write. + The type of the object to write. + The object value to write. It may be null. + The to which to write. + The if available. It may be null. + The if available. It may be null. + Derived types need to support writing. + + + Represents a collection class that contains instances. + + + Initializes a new instance of the class with default values. + + + Initializes a new instance of the class with the given . + A collection of instances to place in the collection. + + + Searches a collection for a formatter that can read the .NET in the given . + The that can read the type, or null if no formatter found. + The .NET type to read. + The media type to match on. + + + Searches a collection for a formatter that can write the .NET in the given . + The that can write the type, or null if no formatter found. + The .NET type to write. + The media type to match on. + + + Gets the to use for application/x-www-form-urlencoded data. + The to use for application/x-www-form-urlencoded data. + + + Determines whether the is one of those loosely defined types that should be excluded from validation. + true if the type should be excluded; otherwise, false. + The .NET to validate. + + + Gets the to use for JSON. + The to use for JSON. + + + Gets the to use for XML. + The to use for XML. + + + Updates the given set of formatter of elements so that it associates the mediaType with s containing a specific query parameter and value. + The to receive the new item. + The name of the query parameter. + The value assigned to that query parameter. + The to associate with a containing a query string matching queryStringParameterName and queryStringParameterValue. + + + Updates the given set of formatter of elements so that it associates the mediaType with s containing a specific query parameter and value. + The to receive the new item. + The name of the query parameter. + The value assigned to that query parameter. + The media type to associate with a containing a query string matching queryStringParameterName and queryStringParameterValue. + + + Updates the given set of formatter of elements so that it associates the mediaType with a specific HTTP request header field with a specific value. + The to receive the new item. + Name of the header to match. + The header value to match. + The to use when matching headerValue. + if set to true then headerValue is considered a match if it matches a substring of the actual header value. + The to associate with a entry with a name matching headerName and a value matching headerValue. + + + Updates the given set of formatter of elements so that it associates the mediaType with a specific HTTP request header field with a specific value. + The to receive the new item. + Name of the header to match. + The header value to match. + The to use when matching headerValue. + if set to true then headerValue is considered a match if it matches a substring of the actual header value. + The media type to associate with a entry with a name matching headerName and a value matching headerValue. + + + This class describes how well a particular matches a request. + + + Initializes a new instance of the class. + The matching formatter. + The media type. Can be null in which case the media type application/octet-stream is used. + The quality of the match. Can be null in which case it is considered a full match with a value of 1.0 + The kind of match. + + + Gets the media type formatter. + + + Gets the matched media type. + + + Gets the quality of the match + + + Gets the kind of match that occurred. + + + Contains information about the degree to which a matches the explicit or implicit preferences found in an incoming request. + + + No match was found + + + Matched on a type, meaning that the formatter is able to serialize the type. + + + Matched on an explicit literal accept header, such as “application/json”. + + + Matched on an explicit subtype range in an Accept header, such as “application/*”. + + + Matched on an explicit “*/*” range in the Accept header. + + + Matched on after having applied the various s. + + + Matched on the media type of the entity body in the HTTP request message. + + + An abstract base class used to create an association between or instances that have certain characteristics and a specific . + + + Initializes a new instance of a with the given mediaType value. + The that is associated with or instances that have the given characteristics of the . + + + Initializes a new instance of a with the given mediaType value. + The that is associated with or instances that have the given characteristics of the . + + + Gets the that is associated with or instances that have the given characteristics of the . + + + Returns the quality of the match of the associated with request. + The quality of the match. It must be between 0.0 and 1.0. A value of 0.0 signifies no match. A value of 1.0 signifies a complete match. + The to evaluate for the characteristics associated with the of the . + + + Class that provides s from query strings. + + + Initializes a new instance of the class. + The name of the query string parameter to match, if present. + The value of the query string parameter specified by queryStringParameterName. + The to use if the query parameter specified by queryStringParameterName is present and assigned the value specified by queryStringParameterValue. + + + Initializes a new instance of the class. + The name of the query string parameter to match, if present. + The value of the query string parameter specified by queryStringParameterName. + The media type to use if the query parameter specified by queryStringParameterName is present and assigned the value specified by queryStringParameterValue. + + + Gets the query string parameter name. + + + Gets the query string parameter value. + + + Returns a value indicating whether the current instance can return a from request. + If this instance can produce a from request it returns 1.0 otherwise 0.0. + The to check. + + + This class provides a mapping from an arbitrary HTTP request header field to a used to select instances for handling the entity body of an or . <remarks>This class only checks header fields associated with for a match. It does not check header fields associated with or instances.</remarks> + + + Initializes a new instance of the class. + Name of the header to match. + The header value to match. + The to use when matching headerValue. + if set to true then headerValue is considered a match if it matches a substring of the actual header value. + The to use if headerName and headerValue is considered a match. + + + Initializes a new instance of the class. + Name of the header to match. + The header value to match. + The value comparison to use when matching headerValue. + if set to true then headerValue is considered a match if it matches a substring of the actual header value. + The media type to use if headerName and headerValue is considered a match. + + + Gets the name of the header to match. + + + Gets the header value to match. + + + Gets the to use when matching . + + + Gets a value indicating whether is a matched as a substring of the actual header value. this instance is value substring. + truefalse + + + Returns a value indicating whether the current instance can return a from request. + The quality of the match. It must be between 0.0 and 1.0. A value of 0.0 signifies no match. A value of 1.0 signifies a complete match. + The to check. + + + A that maps the X-Requested-With http header field set by AJAX XmlHttpRequest (XHR) to the media type application/json if no explicit Accept header fields are present in the request. + + + Initializes a new instance of class + + + Returns a value indicating whether the current instance can return a from request. + The quality of the match. A value of 0.0 signifies no match. A value of 1.0 signifies a complete match and that the request was made using XmlHttpRequest without an Accept header. + The to check. + + + + class to handle Xml. + + + Initializes a new instance of the class. + + + Queries whether the can deserializean object of the specified type. + true if the can deserialize the type; otherwise, false. + The type to deserialize. + + + Queries whether the can serializean object of the specified type. + true if the can serialize the type; otherwise, false. + The type to serialize. + + + Gets the default media type for the XML formatter. + The default media type, which is “application/xml”. + + + Gets or sets a value indicating whether to indent elements when writing data. + true to indent elements; otherwise, false. + + + Gets and sets the maximum nested node depth. + The maximum nested node depth. + + + Called during deserialization to read an object of the specified type from the specified readStream. + A whose result will be the object instance that has been read. + The type of object to read. + The from which to read. + The for the content being read. + The to log events to. + + + Unregisters the serializer currently associated with the given type. + true if a serializer was previously registered for the type; otherwise, false. + The type of object whose serializer should be removed. + + + Registers an to read or write objects of a specified type. + The instance. + The type of object that will be serialized or deserialized with. + + + Registers an to read or write objects of a specified type. + The type of object that will be serialized or deserialized with. + The instance. + + + Registers an to read or write objects of a specified type. + The type of object that will be serialized or deserialized with. + The instance. + + + Registers an to read or write objects of a specified type. + The instance. + The type of object that will be serialized or deserialized with. + + + Gets or sets a value indicating whether the XML formatter uses the as the default serializer, instead of using the . + If true, the formatter uses the by default; otherwise, it uses the by default. + + + Called during serialization to write an object of the specified type to the specified writeStream. + A that will write the value to the stream. + The type of object to write. + The object to write. + The to which to write. + The for the content being written. + The . + + + Represents the event arguments for the HTTP progress. + + + Initializes a new instance of the class. + The percentage of the progress. + The user token. + The number of bytes transferred. + The total number of bytes transferred. + + + Gets the number of bytes transferred in the HTTP progress. + The number of bytes transferred in the HTTP progress. + + + Gets the total number of bytes transferred by the HTTP progress. + The total number of bytes transferred by the HTTP progress. + + + Generates progress notification for both request entities being uploaded and response entities being downloaded. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + The inner message handler. + + + Occurs when event entities are being downloaded. + + + Occurs when event entities are being uploaded. + + + Raises the event that handles the request of the progress. + The request. + The event handler for the request. + + + Raises the event that handles the response of the progress. + The request. + The event handler for the request. + + + Sends the specified progress message to an HTTP server for delivery. + The sent progress message. + The request. + The cancellation token. + + + Provides value for the cookie header. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + The value of the name. + The values. + + + Initializes a new instance of the class. + The value of the name. + The value. + + + Creates a shallow copy of the cookie value. + A shallow copy of the cookie value. + + + Gets a collection of cookies sent by the client. + A collection object representing the client’s cookie variables. + + + Gets or sets the domain to associate the cookie with. + The name of the domain to associate the cookie with. + + + Gets or sets the expiration date and time for the cookie. + The time of day (on the client) at which the cookie expires. + + + Gets or sets a value that specifies whether a cookie is accessible by client-side script. + true if the cookie has the HttpOnly attribute and cannot be accessed through a client-side script; otherwise, false. + + + Gets a shortcut to the cookie property. + The cookie value. + + + Gets or sets the maximum age permitted for a resource. + The maximum age permitted for a resource. + + + Gets or sets the virtual path to transmit with the current cookie. + The virtual path to transmit with the cookie. + + + Gets or sets a value indicating whether to transmit the cookie using Secure Sockets Layer (SSL)—that is, over HTTPS only. + true to transmit the cookie over an SSL connection (HTTPS); otherwise, false. + + + Returns a string that represents the current object. + A string that represents the current object. + + + Indicates a value whether the string representation will be converted. + true if the string representation will be converted; otherwise, false. + The input value. + The parsed value to convert. + + + Contains cookie name and its associated cookie state. + + + Initializes a new instance of the class. + The name of the cookie. + + + Initializes a new instance of the class. + The name of the cookie. + The collection of name-value pair for the cookie. + + + Initializes a new instance of the class. + The name of the cookie. + The value of the cookie. + + + Returns a new object that is a copy of the current instance. + A new object that is a copy of the current instance. + + + Gets or sets the cookie value with the specified cookie name, if the cookie data is structured. + The cookie value with the specified cookie name. + + + Gets or sets the name of the cookie. + The name of the cookie. + + + Returns the string representation the current object. + The string representation the current object. + + + Gets or sets the cookie value, if cookie data is a simple string value. + The value of the cookie. + + + Gets or sets the collection of name-value pair, if the cookie data is structured. + The collection of name-value pair for the cookie. + + + \ No newline at end of file diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.WebRequest.dll b/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.WebRequest.dll new file mode 100644 index 0000000..b26b59a Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.WebRequest.dll differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.WebRequest.xml b/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.WebRequest.xml new file mode 100644 index 0000000..abfb1aa --- /dev/null +++ b/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.WebRequest.xml @@ -0,0 +1,63 @@ + + + + System.Net.Http.WebRequest + + + + Represents the class that is used to create special for use with the Real-Time-Communications (RTC) background notification infrastructure. + + + Creates a special for use with the Real-Time-Communications (RTC) background notification infrastructure. + Returns .An HTTP request message for use with the RTC background notification infrastructure. + The HTTP method. + The Uri the request is sent to. + + + Provides desktop-specific features not available to Windows Store apps or other environments. + + + Initializes a new instance of the class. + + + Gets or sets a value that indicates whether to pipeline the request to the Internet resource. + Returns .true if the request should be pipelined; otherwise, false. The default is true. + + + Gets or sets a value indicating the level of authentication and impersonation used for this request. + Returns .A bitwise combination of the values. The default value is . + + + Gets or sets the cache policy for this request. + Returns .A object that defines a cache policy. The default is . + + + Gets or sets the collection of security certificates that are associated with this request. + Returns .The collection of security certificates associated with this request. + + + Gets or sets the amount of time, in milliseconds, the application will wait for 100-continue from the server before uploading data. + Returns .The amount of time, in milliseconds, the application will wait for 100-continue from the server before uploading data. The default value is 350 milliseconds. + + + Gets or sets the impersonation level for the current request. + Returns .The impersonation level for the request. The default is . + + + Gets or sets the maximum allowed length of the response headers. + Returns .The length, in kilobytes (1024 bytes), of the response headers. + + + Gets or sets a time-out in milliseconds when writing a request to or reading a response from a server. + Returns .The number of milliseconds before the writing or reading times out. The default value is 300,000 milliseconds (5 minutes). + + + Gets or sets a callback method to validate the server certificate. + Returns .A callback method to validate the server certificate. + + + Gets or sets a value that indicates whether to allow high-speed NTLM-authenticated connection sharing. + Returns .true to keep the authenticated connection open; otherwise, false. + + + \ No newline at end of file diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.dll b/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.dll new file mode 100644 index 0000000..2ee8ff7 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.dll differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.xml b/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.xml new file mode 100644 index 0000000..6506939 --- /dev/null +++ b/migrate_data/acc_pgsqlTest/bin/Debug/System.Net.Http.xml @@ -0,0 +1,2308 @@ + + + + System.Net.Http + + + + Provides HTTP content based on a byte array. + + + Initializes a new instance of the class. + The content used to initialize the . + The parameter is null. + + + Initializes a new instance of the class. + The content used to initialize the . + The offset, in bytes, in the parameter used to initialize the . + The number of bytes in the starting from the parameter used to initialize the . + The parameter is null. + The parameter is less than zero.-or-The parameter is greater than the length of content specified by the parameter.-or-The parameter is less than zero.-or-The parameter is greater than the length of content specified by the parameter - minus the parameter. + + + Creates an HTTP content stream as an asynchronous operation for reading whose backing store is memory from the . + Returns .The task object representing the asynchronous operation. + + + Serialize and write the byte array provided in the constructor to an HTTP content stream as an asynchronous operation. + Returns . The task object representing the asynchronous operation. + The target stream. + Information about the transport, like channel binding token. This parameter may be null. + + + Determines whether a byte array has a valid length in bytes. + Returns .true if is a valid length; otherwise, false. + The length in bytes of the byte array. + + + Specifies how client certificates are provided. + + + The application manually provides the client certificates to the . This value is the default. + + + The will attempt to provide all available client certificates automatically. + + + A base type for HTTP handlers that delegate the processing of HTTP response messages to another handler, called the inner handler. + + + Creates a new instance of the class. + + + Creates a new instance of the class with a specific inner handler. + The inner handler which is responsible for processing the HTTP response messages. + + + Releases the unmanaged resources used by the , and optionally disposes of the managed resources. + true to release both managed and unmanaged resources; false to releases only unmanaged resources. + + + Gets or sets the inner handler which processes the HTTP response messages. + Returns .The inner handler for HTTP response messages. + + + Sends an HTTP request to the inner handler to send to the server as an asynchronous operation. + Returns . The task object representing the asynchronous operation. + The HTTP request message to send to the server. + A cancellation token to cancel operation. + The was null. + + + A container for name/value tuples encoded using application/x-www-form-urlencoded MIME type. + + + Initializes a new instance of the class with a specific collection of name/value pairs. + A collection of name/value pairs. + + + Provides a base class for sending HTTP requests and receiving HTTP responses from a resource identified by a URI. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class with a specific handler. + The HTTP handler stack to use for sending requests. + + + Initializes a new instance of the class with a specific handler. + The responsible for processing the HTTP response messages. + true if the inner handler should be disposed of by Dispose(),false if you intend to reuse the inner handler. + + + Gets or sets the base address of Uniform Resource Identifier (URI) of the Internet resource used when sending requests. + Returns .The base address of Uniform Resource Identifier (URI) of the Internet resource used when sending requests. + + + Cancel all pending requests on this instance. + + + Gets the headers which should be sent with each request. + Returns .The headers which should be sent with each request. + + + Send a DELETE request to the specified Uri as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The was null. + + + Send a DELETE request to the specified Uri with a cancellation token as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The was null. + + + Send a DELETE request to the specified Uri as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The was null. + + + Send a DELETE request to the specified Uri with a cancellation token as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The was null. + + + Releases the unmanaged resources used by the and optionally disposes of the managed resources. + true to release both managed and unmanaged resources; false to releases only unmanaged resources. + + + Send a GET request to the specified Uri as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The was null. + + + Send a GET request to the specified Uri with an HTTP completion option as an asynchronous operation. + Returns . + The Uri the request is sent to. + An HTTP completion option value that indicates when the operation should be considered completed. + The was null. + + + Send a GET request to the specified Uri with an HTTP completion option and a cancellation token as an asynchronous operation. + Returns . + The Uri the request is sent to. + An HTTP completion option value that indicates when the operation should be considered completed. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The was null. + + + Send a GET request to the specified Uri with a cancellation token as an asynchronous operation. + Returns . + The Uri the request is sent to. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The was null. + + + Send a GET request to the specified Uri as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The was null. + + + Send a GET request to the specified Uri with an HTTP completion option as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + An HTTP completion option value that indicates when the operation should be considered completed. + The was null. + + + Send a GET request to the specified Uri with an HTTP completion option and a cancellation token as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + An HTTP completion option value that indicates when the operation should be considered completed. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The was null. + + + Send a GET request to the specified Uri with a cancellation token as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The was null. + + + Send a GET request to the specified Uri and return the response body as a byte array in an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The was null. + + + Send a GET request to the specified Uri and return the response body as a byte array in an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The was null. + + + Send a GET request to the specified Uri and return the response body as a stream in an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The was null. + + + Send a GET request to the specified Uri and return the response body as a stream in an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The was null. + + + Send a GET request to the specified Uri and return the response body as a string in an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The was null. + + + Send a GET request to the specified Uri and return the response body as a string in an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The was null. + + + Gets or sets the maximum number of bytes to buffer when reading the response content. + Returns .The maximum number of bytes to buffer when reading the response content. The default value for this property is 64K. + The size specified is less than or equal to zero. + An operation has already been started on the current instance. + The current instance has been disposed. + + + Send a POST request to the specified Uri as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The HTTP request content sent to the server. + The was null. + + + Send a POST request with a cancellation token as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The HTTP request content sent to the server. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The was null. + + + Send a POST request to the specified Uri as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The HTTP request content sent to the server. + The was null. + + + Send a POST request with a cancellation token as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The HTTP request content sent to the server. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The was null. + + + Send a PUT request to the specified Uri as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The HTTP request content sent to the server. + The was null. + + + Send a PUT request with a cancellation token as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The HTTP request content sent to the server. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The was null. + + + Send a PUT request to the specified Uri as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The HTTP request content sent to the server. + The was null. + + + Send a PUT request with a cancellation token as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The Uri the request is sent to. + The HTTP request content sent to the server. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The was null. + + + Send an HTTP request as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The HTTP request message to send. + The was null. + The request message was already sent by the instance. + + + Send an HTTP request as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The HTTP request message to send. + When the operation should complete (as soon as a response is available or after reading the whole response content). + The was null. + The request message was already sent by the instance. + + + Send an HTTP request as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The HTTP request message to send. + When the operation should complete (as soon as a response is available or after reading the whole response content). + The cancellation token to cancel operation. + The was null. + The request message was already sent by the instance. + + + Send an HTTP request as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The HTTP request message to send. + The cancellation token to cancel operation. + The was null. + The request message was already sent by the instance. + + + Gets or sets the number of milliseconds to wait before the request times out. + Returns .The number of milliseconds to wait before the request times out. + The timeout specified is less than or equal to zero and is not . + An operation has already been started on the current instance. + The current instance has been disposed. + + + The default message handler used by . + + + Creates an instance of a class. + + + Gets or sets a value that indicates whether the handler should follow redirection responses. + Returns .true if the if the handler should follow redirection responses; otherwise false. The default value is true. + + + Gets or sets the type of decompression method used by the handler for automatic decompression of the HTTP content response. + Returns .The automatic decompression method used by the handler. The default value is . + + + Gets or sets the collection of security certificates that are associated with this handler. + Returns .The collection of security certificates associated with this handler. + + + Gets or sets the cookie container used to store server cookies by the handler. + Returns .The cookie container used to store server cookies by the handler. + + + Gets or sets authentication information used by this handler. + Returns .The authentication credentials associated with the handler. The default is null. + + + Releases the unmanaged resources used by the and optionally disposes of the managed resources. + true to release both managed and unmanaged resources; false to releases only unmanaged resources. + + + Gets or sets the maximum number of redirects that the handler follows. + Returns .The maximum number of redirection responses that the handler follows. The default value is 50. + + + Gets or sets the maximum request content buffer size used by the handler. + Returns .The maximum request content buffer size in bytes. The default value is 65,536 bytes. + + + Gets or sets a value that indicates whether the handler sends an Authorization header with the request. + Returns .true for the handler to send an HTTP Authorization header with requests after authentication has taken place; otherwise, false. The default is false. + + + Gets or sets proxy information used by the handler. + Returns .The proxy information used by the handler. The default value is null. + + + Creates an instance of based on the information provided in the as an operation that will not block. + Returns .The task object representing the asynchronous operation. + The HTTP request message. + A cancellation token to cancel the operation. + The was null. + + + Gets a value that indicates whether the handler supports automatic response content decompression. + Returns .true if the if the handler supports automatic response content decompression; otherwise false. The default value is true. + + + Gets a value that indicates whether the handler supports proxy settings. + Returns .true if the if the handler supports proxy settings; otherwise false. The default value is true. + + + Gets a value that indicates whether the handler supports configuration settings for the and properties. + Returns .true if the if the handler supports configuration settings for the and properties; otherwise false. The default value is true. + + + Gets or sets a value that indicates whether the handler uses the property to store server cookies and uses these cookies when sending requests. + Returns .true if the if the handler supports uses the property to store server cookies and uses these cookies when sending requests; otherwise false. The default value is true. + + + Gets or sets a value that controls whether default credentials are sent with requests by the handler. + Returns .true if the default credentials are used; otherwise false. The default value is false. + + + Gets or sets a value that indicates whether the handler uses a proxy for requests. + Returns .true if the handler should use a proxy for requests; otherwise false. The default value is true. + + + Indicates if operations should be considered completed either as soon as a response is available, or after reading the entire response message including the content. + + + The operation should complete after reading the entire response including the content. + + + The operation should complete as soon as a response is available and headers are read. The content is not read yet. + + + A base class representing an HTTP entity body and content headers. + + + Initializes a new instance of the class. + + + Write the HTTP content to a stream as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The target stream. + + + Write the HTTP content to a stream as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The target stream. + Information about the transport (channel binding token, for example). This parameter may be null. + + + Write the HTTP content to a memory stream as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + + + Releases the unmanaged resources and disposes of the managed resources used by the . + + + Releases the unmanaged resources used by the and optionally disposes of the managed resources. + true to release both managed and unmanaged resources; false to releases only unmanaged resources. + + + Gets the HTTP content headers as defined in RFC 2616. + Returns .The content headers as defined in RFC 2616. + + + Serialize the HTTP content to a memory buffer as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + + + Serialize the HTTP content to a memory buffer as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The maximum size, in bytes, of the buffer to use. + + + Write the HTTP content to a byte array as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + + + Write the HTTP content to a stream as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + + + Write the HTTP content to a string as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + + + Serialize the HTTP content to a stream as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The target stream. + Information about the transport (channel binding token, for example). This parameter may be null. + + + Determines whether the HTTP content has a valid length in bytes. + Returns .true if is a valid length; otherwise, false. + The length in bytes of the HHTP content. + + + A base type for HTTP message handlers. + + + Initializes a new instance of the class. + + + Releases the unmanaged resources and disposes of the managed resources used by the . + + + Releases the unmanaged resources used by the and optionally disposes of the managed resources. + true to release both managed and unmanaged resources; false to releases only unmanaged resources. + + + Send an HTTP request as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The HTTP request message to send. + The cancellation token to cancel operation. + The was null. + + + The base type for and other message originators. + + + Initializes an instance of a class with a specific . + The responsible for processing the HTTP response messages. + + + Initializes an instance of a class with a specific . + The responsible for processing the HTTP response messages. + true if the inner handler should be disposed of by Dispose(),false if you intend to reuse the inner handler. + + + Releases the unmanaged resources and disposes of the managed resources used by the . + + + Releases the unmanaged resources used by the and optionally disposes of the managed resources. + true to release both managed and unmanaged resources; false to releases only unmanaged resources. + + + Send an HTTP request as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The HTTP request message to send. + The cancellation token to cancel operation. + The was null. + + + A helper class for retrieving and comparing standard HTTP methods. + + + Initializes a new instance of the class with a specific HTTP method. + The HTTP method. + + + Represents an HTTP DELETE protocol method. + Returns . + + + Determines whether the specified is equal to the current . + Returns .true if the specified object is equal to the current object; otherwise, false. + The HTTP method to compare with the current object. + + + Determines whether the specified is equal to the current . + Returns .true if the specified object is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Represents an HTTP GET protocol method. + Returns . + + + Serves as a hash function for this type. + Returns .A hash code for the current . + + + Represents an HTTP HEAD protocol method. The HEAD method is identical to GET except that the server only returns message-headers in the response, without a message-body. + Returns . + + + An HTTP method. + Returns .An HTTP method represented as a . + + + The equality operator for comparing two objects. + Returns .true if the specified and parameters are equal; otherwise, false. + The left to an equality operator. + The right to an equality operator. + + + The inequality operator for comparing two objects. + Returns .true if the specified and parameters are inequal; otherwise, false. + The left to an inequality operator. + The right to an inequality operator. + + + Represents an HTTP OPTIONS protocol method. + Returns . + + + Represents an HTTP POST protocol method that is used to post a new entity as an addition to a URI. + Returns . + + + Represents an HTTP PUT protocol method that is used to replace an entity identified by a URI. + Returns . + + + Returns a string that represents the current object. + Returns .A string representing the current object. + + + Represents an HTTP TRACE protocol method. + Returns . + + + A base class for exceptions thrown by the and classes. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class with a specific message that describes the current exception. + A message that describes the current exception. + + + Initializes a new instance of the class with a specific message that describes the current exception and an inner exception. + A message that describes the current exception. + The inner exception. + + + Represents a HTTP request message. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class with an HTTP method and a request . + The HTTP method. + A string that represents the request . + + + Initializes a new instance of the class with an HTTP method and a request . + The HTTP method. + The to request. + + + Gets or sets the contents of the HTTP message. + Returns .The content of a message + + + Releases the unmanaged resources and disposes of the managed resources used by the . + + + Releases the unmanaged resources used by the and optionally disposes of the managed resources. + true to release both managed and unmanaged resources; false to releases only unmanaged resources. + + + Gets the collection of HTTP request headers. + Returns .The collection of HTTP request headers. + + + Gets or sets the HTTP method used by the HTTP request message. + Returns .The HTTP method used by the request message. The default is the GET method. + + + Gets a set of properties for the HTTP request. + Returns . + + + Gets or sets the used for the HTTP request. + Returns .The used for the HTTP request. + + + Returns a string that represents the current object. + Returns .A string representation of the current object. + + + Gets or sets the HTTP message version. + Returns .The HTTP message version. The default is 1.1. + + + Represents a HTTP response message. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class with a specific . + The status code of the HTTP response. + + + Gets or sets the content of a HTTP response message. + Returns .The content of the HTTP response message. + + + Releases the unmanaged resources and disposes of unmanaged resources used by the . + + + Releases the unmanaged resources used by the and optionally disposes of the managed resources. + true to release both managed and unmanaged resources; false to releases only unmanaged resources. + + + Throws an exception if the property for the HTTP response is false. + Returns .The HTTP response message if the call is successful. + + + Gets the collection of HTTP response headers. + Returns .The collection of HTTP response headers. + + + Gets a value that indicates if the HTTP response was successful. + Returns .A value that indicates if the HTTP response was successful. true if was in the range 200-299; otherwise false. + + + Gets or sets the reason phrase which typically is sent by servers together with the status code. + Returns .The reason phrase sent by the server. + + + Gets or sets the request message which led to this response message. + Returns .The request message which led to this response message. + + + Gets or sets the status code of the HTTP response. + Returns .The status code of the HTTP response. + + + Returns a string that represents the current object. + Returns .A string representation of the current object. + + + Gets or sets the HTTP message version. + Returns .The HTTP message version. The default is 1.1. + + + A base type for handlers which only do some small processing of request and/or response messages. + + + Creates an instance of a class. + + + Creates an instance of a class with a specific inner handler. + The inner handler which is responsible for processing the HTTP response messages. + + + Processes an HTTP request message. + Returns .The HTTP request message that was processed. + The HTTP request message to process. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + Processes an HTTP response message. + Returns .The HTTP response message that was processed. + The HTTP response message to process. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + + + Sends an HTTP request to the inner handler to send to the server as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The HTTP request message to send to the server. + A cancellation token that can be used by other objects or threads to receive notice of cancellation. + The was null. + + + Provides a collection of objects that get serialized using the multipart/* content type specification. + + + Creates a new instance of the class. + + + Creates a new instance of the class. + The subtype of the multipart content. + The was null or contains only white space characters. + + + Creates a new instance of the class. + The subtype of the multipart content. + The boundary string for the multipart content. + The was null or an empty string.The was null or contains only white space characters.-or-The ends with a space character. + The length of the was greater than 70. + + + Add multipart HTTP content to a collection of objects that get serialized using the multipart/* content type specification. + The HTTP content to add to the collection. + The was null. + + + Releases the unmanaged resources used by the and optionally disposes of the managed resources. + true to release both managed and unmanaged resources; false to releases only unmanaged resources. + + + Returns an enumerator that iterates through the collection of objects that get serialized using the multipart/* content type specification.. + Returns .An object that can be used to iterate through the collection. + + + Serialize the multipart HTTP content to a stream as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The target stream. + Information about the transport (channel binding token, for example). This parameter may be null. + + + The explicit implementation of the method. + Returns .An object that can be used to iterate through the collection. + + + Determines whether the HTTP multipart content has a valid length in bytes. + Returns .true if is a valid length; otherwise, false. + The length in bytes of the HHTP content. + + + Provides a container for content encoded using multipart/form-data MIME type. + + + Creates a new instance of the class. + + + Creates a new instance of the class. + The boundary string for the multipart form data content. + The was null or contains only white space characters.-or-The ends with a space character. + The length of the was greater than 70. + + + Add HTTP content to a collection of objects that get serialized to multipart/form-data MIME type. + The HTTP content to add to the collection. + The was null. + + + Add HTTP content to a collection of objects that get serialized to multipart/form-data MIME type. + The HTTP content to add to the collection. + The name for the HTTP content to add. + The was null or contains only white space characters. + The was null. + + + Add HTTP content to a collection of objects that get serialized to multipart/form-data MIME type. + The HTTP content to add to the collection. + The name for the HTTP content to add. + The file name for the HTTP content to add to the collection. + The was null or contains only white space characters.-or-The was null or contains only white space characters. + The was null. + + + Provides HTTP content based on a stream. + + + Creates a new instance of the class. + The content used to initialize the . + + + Creates a new instance of the class. + The content used to initialize the . + The size, in bytes, of the buffer for the . + The was null. + The was less than or equal to zero. + + + Write the HTTP stream content to a memory stream as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + + + Releases the unmanaged resources used by the and optionally disposes of the managed resources. + true to release both managed and unmanaged resources; false to releases only unmanaged resources. + + + Serialize the HTTP content to a stream as an asynchronous operation. + Returns .The task object representing the asynchronous operation. + The target stream. + Information about the transport (channel binding token, for example). This parameter may be null. + + + Determines whether the stream content has a valid length in bytes. + Returns .true if is a valid length; otherwise, false. + The length in bytes of the stream content. + + + Provides HTTP content based on a string. + + + Creates a new instance of the class. + The content used to initialize the . + + + Creates a new instance of the class. + The content used to initialize the . + The encoding to use for the content. + + + Creates a new instance of the class. + The content used to initialize the . + The encoding to use for the content. + The media type to use for the content. + + + Represents authentication information in Authorization, ProxyAuthorization, WWW-Authenticate, and Proxy-Authenticate header values. + + + Initializes a new instance of the class. + The scheme to use for authorization. + + + Initializes a new instance of the class. + The scheme to use for authorization. + The credentials containing the authentication information of the user agent for the resource being requested. + + + Determines whether the specified is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Serves as a hash function for an object. + Returns .A hash code for the current object. + + + Gets the credentials containing the authentication information of the user agent for the resource being requested. + Returns .The credentials containing the authentication information. + + + Converts a string to an instance. + Returns .An instance. + A string that represents authentication header value information. + + is a null reference. + + is not valid authentication header value information. + + + Gets the scheme to use for authorization. + Returns .The scheme to use for authorization. + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + Represents the value of the Cache-Control header. + + + Initializes a new instance of the class. + + + Determines whether the specified is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Cache-extension tokens, each with an optional assigned value. + Returns .A collection of cache-extension tokens each with an optional assigned value. + + + Serves as a hash function for a object. + Returns .A hash code for the current object. + + + The maximum age, specified in seconds, that the HTTP client is willing to accept a response. + Returns .The time in seconds. + + + Whether an HTTP client is willing to accept a response that has exceeded its expiration time. + Returns .true if the HTTP client is willing to accept a response that has exceed the expiration time; otherwise, false. + + + The maximum time, in seconds, an HTTP client is willing to accept a response that has exceeded its expiration time. + Returns .The time in seconds. + + + The freshness lifetime, in seconds, that an HTTP client is willing to accept a response. + Returns .The time in seconds. + + + Whether the origin server require revalidation of a cache entry on any subsequent use when the cache entry becomes stale. + Returns .true if the origin server requires revalidation of a cache entry on any subsequent use when the entry becomes stale; otherwise, false. + + + Whether an HTTP client is willing to accept a cached response. + Returns .true if the HTTP client is willing to accept a cached response; otherwise, false. + + + A collection of fieldnames in the "no-cache" directive in a cache-control header field on an HTTP response. + Returns .A collection of fieldnames. + + + Whether a cache must not store any part of either the HTTP request mressage or any response. + Returns .true if a cache must not store any part of either the HTTP request mressage or any response; otherwise, false. + + + Whether a cache or proxy must not change any aspect of the entity-body. + Returns .true if a cache or proxy must not change any aspect of the entity-body; otherwise, false. + + + Whether a cache should either respond using a cached entry that is consistent with the other constraints of the HTTP request, or respond with a 504 (Gateway Timeout) status. + Returns .true if a cache should either respond using a cached entry that is consistent with the other constraints of the HTTP request, or respond with a 504 (Gateway Timeout) status; otherwise, false. + + + Converts a string to an instance. + Returns .A instance. + A string that represents cache-control header value information. + + is a null reference. + + is not valid cache-control header value information. + + + Whether all or part of the HTTP response message is intended for a single user and must not be cached by a shared cache. + Returns .true if the HTTP response message is intended for a single user and must not be cached by a shared cache; otherwise, false. + + + A collection fieldnames in the "private" directive in a cache-control header field on an HTTP response. + Returns .A collection of fieldnames. + + + Whether the origin server require revalidation of a cache entry on any subsequent use when the cache entry becomes stale for shared user agent caches. + Returns .true if the origin server requires revalidation of a cache entry on any subsequent use when the entry becomes stale for shared user agent caches; otherwise, false. + + + Whether an HTTP response may be cached by any cache, even if it would normally be non-cacheable or cacheable only within a non- shared cache. + Returns .true if the HTTP response may be cached by any cache, even if it would normally be non-cacheable or cacheable only within a non- shared cache; otherwise, false. + + + The shared maximum age, specified in seconds, in an HTTP response that overrides the "max-age" directive in a cache-control header or an Expires header for a shared cache. + Returns .The time in seconds. + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + Represents the value of the Content-Disposition header. + + + Initializes a new instance of the class. + A . + + + Initializes a new instance of the class. + A string that contains a . + + + The date at which the file was created. + Returns .The file creation date. + + + The disposition type for a content body part. + Returns .The disposition type. + + + Determines whether the specified is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + A suggestion for how to construct a filename for storing the message payload to be used if the entity is detached and stored in a separate file. + Returns .A suggested filename. + + + A suggestion for how to construct filenames for storing message payloads to be used if the entities are detached and stored in a separate files. + Returns .A suggested filename of the form filename*. + + + Serves as a hash function for an object. + Returns .A hash code for the current object. + + + The date at which the file was last modified. + Returns .The file modification date. + + + The name for a content body part. + Returns .The name for the content body part. + + + A set of parameters included the Content-Disposition header. + Returns .A collection of parameters. + + + Converts a string to an instance. + Returns .An instance. + A string that represents content disposition header value information. + + is a null reference. + + is not valid content disposition header value information. + + + The date the file was last read. + Returns .The last read date. + + + The approximate size, in bytes, of the file. + Returns .The approximate size, in bytes. + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + Represents the value of the Content-Range header. + + + Initializes a new instance of the class. + The starting or ending point of the range, in bytes. + + + Initializes a new instance of the class. + The position, in bytes, at which to start sending data. + The position, in bytes, at which to stop sending data. + + + Initializes a new instance of the class. + The position, in bytes, at which to start sending data. + The position, in bytes, at which to stop sending data. + The starting or ending point of the range, in bytes. + + + Determines whether the specified Object is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Gets the position at which to start sending data. + Returns .The position, in bytes, at which to start sending data. + + + Serves as a hash function for an object. + Returns .A hash code for the current object. + + + Gets whether the Content-Range header has a length specified. + Returns .true if the Content-Range has a length specified; otherwise, false. + + + Gets whether the Content-Range has a range specified. + Returns .true if the Content-Range has a range specified; otherwise, false. + + + Gets the length of the full entity-body. + Returns .The length of the full entity-body. + + + Converts a string to an instance. + Returns .An instance. + A string that represents content range header value information. + + is a null reference. + + is not valid content range header value information. + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Gets the position at which to stop sending data. + Returns .The position at which to stop sending data. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + The range units used. + Returns .A that contains range units. + + + Represents an entity-tag header value. + + + Initializes a new instance of the class. + A string that contains an . + + + Initializes a new instance of the class. + A string that contains an . + A value that indicates if this entity-tag header is a weak validator. If the entity-tag header is weak validator, then should be set to true. If the entity-tag header is a strong validator, then should be set to false. + + + Gets the entity-tag header value. + Returns . + + + Determines whether the specified is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Serves as a hash function for an object. + Returns .A hash code for the current object. + + + Gets whether the entity-tag is prefaced by a weakness indicator. + Returns .true if the entity-tag is prefaced by a weakness indicator; otherwise, false. + + + Converts a string to an instance. + Returns .An instance. + A string that represents entity tag header value information. + + is a null reference. + + is not valid entity tag header value information. + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Gets the opaque quoted string. + Returns .An opaque quoted string. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + Represents the collection of Content Headers as defined in RFC 2616. + + + Gets the value of the Allow content header on an HTTP response. + Returns .The value of the Allow header on an HTTP response. + + + Gets the value of the Content-Disposition content header on an HTTP response. + Returns .The value of the Content-Disposition content header on an HTTP response. + + + Gets the value of the Content-Encoding content header on an HTTP response. + Returns .The value of the Content-Encoding content header on an HTTP response. + + + Gets the value of the Content-Language content header on an HTTP response. + Returns .The value of the Content-Language content header on an HTTP response. + + + Gets or sets the value of the Content-Length content header on an HTTP response. + Returns .The value of the Content-Length content header on an HTTP response. + + + Gets or sets the value of the Content-Location content header on an HTTP response. + Returns .The value of the Content-Location content header on an HTTP response. + + + Gets or sets the value of the Content-MD5 content header on an HTTP response. + Returns .The value of the Content-MD5 content header on an HTTP response. + + + Gets or sets the value of the Content-Range content header on an HTTP response. + Returns .The value of the Content-Range content header on an HTTP response. + + + Gets or sets the value of the Content-Type content header on an HTTP response. + Returns .The value of the Content-Type content header on an HTTP response. + + + Gets or sets the value of the Expires content header on an HTTP response. + Returns .The value of the Expires content header on an HTTP response. + + + Gets or sets the value of the Last-Modified content header on an HTTP response. + Returns .The value of the Last-Modified content header on an HTTP response. + + + A collection of headers and their values as defined in RFC 2616. + + + Initializes a new instance of the class. + + + Adds the specified header and its values into the collection. + The header to add to the collection. + A list of header values to add to the collection. + + + Adds the specified header and its value into the collection. + The header to add to the collection. + The content of the header. + + + Removes all headers from the collection. + + + Returns if a specific header exists in the collection. + Returns .true is the specified header exists in the collection; otherwise false. + The specific header. + + + Returns an enumerator that can iterate through the instance. + Returns .An enumerator for the . + + + Returns all header values for a specified header stored in the collection. + Returns .An array of header strings. + The specified header to return values for. + + + Removes the specified header from the collection. + Returns . + The name of the header to remove from the collection. + + + Gets an enumerator that can iterate through a . + Returns .An instance of an implementation of an that can iterate through a . + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Returns a value that indicates whether the specified header and its values were added to the collection without validating the provided information. + Returns .true if the specified header and could be added to the collection; otherwise false. + The header to add to the collection. + The values of the header. + + + Returns a value that indicates whether the specified header and its value were added to the collection without validating the provided information. + Returns .true if the specified header and could be added to the collection; otherwise false. + The header to add to the collection. + The content of the header. + + + Return if a specified header and specified values are stored in the collection. + Returns .true is the specified header and values are stored in the collection; otherwise false. + The specified header. + The specified header values. + + + Represents a collection of header values. + + + + + + Returns . + + + + Returns . + + + Returns . + + + Returns . + + + + Returns . + + + Returns . + + + Returns a string that represents the current XXX object. + Returns .A string that represents the current object. + + + Determines whether a string is valid XXX information. + Returns . + The string to validate. + + + Represents the collection of Request Headers as defined in RFC 2616. + + + Gets the value of the Accept header for an HTTP request. + Returns .The value of the Accept header for an HTTP request. + + + Gets the value of the Accept-Charset header for an HTTP request. + Returns .The value of the Accept-Charset header for an HTTP request. + + + Gets the value of the Accept-Encoding header for an HTTP request. + Returns .The value of the Accept-Encoding header for an HTTP request. + + + Gets the value of the Accept-Language header for an HTTP request. + Returns .The value of the Accept-Language header for an HTTP request. + + + Gets or sets the value of the Authorization header for an HTTP request. + Returns .The value of the Authorization header for an HTTP request. + + + Gets or sets the value of the Cache-Control header for an HTTP request. + Returns .The value of the Cache-Control header for an HTTP request. + + + Gets the value of the Connection header for an HTTP request. + Returns .The value of the Connection header for an HTTP request. + + + Gets or sets a value that indicates if the Connection header for an HTTP request contains Close. + Returns .true if the Connection header contains Close, otherwise false. + + + Gets or sets the value of the Date header for an HTTP request. + Returns .The value of the Date header for an HTTP request. + + + Gets the value of the Expect header for an HTTP request. + Returns .The value of the Expect header for an HTTP request. + + + Gets or sets a value that indicates if the Expect header for an HTTP request contains Continue. + Returns .true if the Expect header contains Continue, otherwise false. + + + Gets or sets the value of the From header for an HTTP request. + Returns .The value of the From header for an HTTP request. + + + Gets or sets the value of the Host header for an HTTP request. + Returns .The value of the Host header for an HTTP request. + + + Gets the value of the If-Match header for an HTTP request. + Returns .The value of the If-Match header for an HTTP request. + + + Gets or sets the value of the If-Modified-Since header for an HTTP request. + Returns .The value of the If-Modified-Since header for an HTTP request. + + + Gets the value of the If-None-Match header for an HTTP request. + Returns .Gets the value of the If-None-Match header for an HTTP request. + + + Gets or sets the value of the If-Range header for an HTTP request. + Returns .The value of the If-Range header for an HTTP request. + + + Gets or sets the value of the If-Unmodified-Since header for an HTTP request. + Returns .The value of the If-Unmodified-Since header for an HTTP request. + + + Gets or sets the value of the Max-Forwards header for an HTTP request. + Returns .The value of the Max-Forwards header for an HTTP request. + + + Gets the value of the Pragma header for an HTTP request. + Returns .The value of the Pragma header for an HTTP request. + + + Gets or sets the value of the Proxy-Authorization header for an HTTP request. + Returns .The value of the Proxy-Authorization header for an HTTP request. + + + Gets or sets the value of the Range header for an HTTP request. + Returns .The value of the Range header for an HTTP request. + + + Gets or sets the value of the Referer header for an HTTP request. + Returns .The value of the Referer header for an HTTP request. + + + Gets the value of the TE header for an HTTP request. + Returns .The value of the TE header for an HTTP request. + + + Gets the value of the Trailer header for an HTTP request. + Returns .The value of the Trailer header for an HTTP request. + + + Gets the value of the Transfer-Encoding header for an HTTP request. + Returns .The value of the Transfer-Encoding header for an HTTP request. + + + Gets or sets a value that indicates if the Transfer-Encoding header for an HTTP request contains chunked. + Returns .true if the Transfer-Encoding header contains chunked, otherwise false. + + + Gets the value of the Upgrade header for an HTTP request. + Returns .The value of the Upgrade header for an HTTP request. + + + Gets the value of the User-Agent header for an HTTP request. + Returns .The value of the User-Agent header for an HTTP request. + + + Gets the value of the Via header for an HTTP request. + Returns .The value of the Via header for an HTTP request. + + + Gets the value of the Warning header for an HTTP request. + Returns .The value of the Warning header for an HTTP request. + + + Represents the collection of Response Headers as defined in RFC 2616. + + + Gets the value of the Accept-Ranges header for an HTTP response. + Returns .The value of the Accept-Ranges header for an HTTP response. + + + Gets or sets the value of the Age header for an HTTP response. + Returns .The value of the Age header for an HTTP response. + + + Gets or sets the value of the Cache-Control header for an HTTP response. + Returns .The value of the Cache-Control header for an HTTP response. + + + Gets the value of the Connection header for an HTTP response. + Returns .The value of the Connection header for an HTTP response. + + + Gets or sets a value that indicates if the Connection header for an HTTP response contains Close. + Returns .true if the Connection header contains Close, otherwise false. + + + Gets or sets the value of the Date header for an HTTP response. + Returns .The value of the Date header for an HTTP response. + + + Gets or sets the value of the ETag header for an HTTP response. + Returns .The value of the ETag header for an HTTP response. + + + Gets or sets the value of the Location header for an HTTP response. + Returns .The value of the Location header for an HTTP response. + + + Gets the value of the Pragma header for an HTTP response. + Returns .The value of the Pragma header for an HTTP response. + + + Gets the value of the Proxy-Authenticate header for an HTTP response. + Returns .The value of the Proxy-Authenticate header for an HTTP response. + + + Gets or sets the value of the Retry-After header for an HTTP response. + Returns .The value of the Retry-After header for an HTTP response. + + + Gets the value of the Server header for an HTTP response. + Returns .The value of the Server header for an HTTP response. + + + Gets the value of the Trailer header for an HTTP response. + Returns .The value of the Trailer header for an HTTP response. + + + Gets the value of the Transfer-Encoding header for an HTTP response. + Returns .The value of the Transfer-Encoding header for an HTTP response. + + + Gets or sets a value that indicates if the Transfer-Encoding header for an HTTP response contains chunked. + Returns .true if the Transfer-Encoding header contains chunked, otherwise false. + + + Gets the value of the Upgrade header for an HTTP response. + Returns .The value of the Upgrade header for an HTTP response. + + + Gets the value of the Vary header for an HTTP response. + Returns .The value of the Vary header for an HTTP response. + + + Gets the value of the Via header for an HTTP response. + Returns .The value of the Via header for an HTTP response. + + + Gets the value of the Warning header for an HTTP response. + Returns .The value of the Warning header for an HTTP response. + + + Gets the value of the WWW-Authenticate header for an HTTP response. + Returns .The value of the WWW-Authenticate header for an HTTP response. + + + Represents a media-type as defined in the RFC 2616. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + + + Gets or sets the character set. + Returns .The character set. + + + Determines whether the specified is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Serves as a hash function for an object. + Returns .A hash code for the current object. + + + Gets or sets the media-type header value. + Returns .The media-type header value. + + + Gets or sets the media-type header value parameters. + Returns .The media-type header value parameters. + + + Converts a string to an instance. + Returns .An instance. + A string that represents media type header value information. + + is a null reference. + + is not valid media type header value information. + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + Represents a content-type header value with an additional quality. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + + + Converts a string to an instance. + Returns .An instance. + A string that represents media type with quality header value information. + + is a null reference. + + is not valid media type with quality header value information. + + + Returns . + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + Represents a name/value pair. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + The header name. + + + Initializes a new instance of the class. + The header name. + The header value. + + + Determines whether the specified is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Serves as a hash function for an object. + Returns .A hash code for the current object. + + + Gets the header name. + Returns .The header name. + + + Converts a string to an instance. + Returns .An instance. + A string that represents name value header value information. + + is a null reference. + + is not valid name value header value information. + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + Gets the header value. + Returns .The header value. + + + Represents a name/value pair with parameters. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + + + Determines whether the specified is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Serves as a hash function for an object. + Returns .A hash code for the current object. + + + Returns . + + + Converts a string to an instance. + Returns .An instance. + A string that represents name value with parameter header value information. + + is a null reference. + + is not valid name value with parameter header value information. + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + Represents a product token in header value. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + + + Determines whether the specified is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Serves as a hash function for an object. + Returns .A hash code for the current object. + + + Gets the name of the product token. + Returns .The name of the product token. + + + Converts a string to an instance. + Returns .An instance. + A string that represents product header value information. + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + Gets the version of the product token. + Returns .The version of the product token. + + + Represents a value which can either be a product or a comment. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + + + Returns . + + + Determines whether the specified is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Serves as a hash function for an object. + Returns .A hash code for the current object. + + + Converts a string to an instance. + Returns .An instance. + A string that represents product info header value information. + + is a null reference. + + is not valid product info header value information. + + + Returns . + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + Represents a header value which can either be a date/time or an entity-tag value. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + + + Returns . + + + Returns . + + + Determines whether the specified is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + + + Serves as a hash function for an object. + Returns .A hash code for the current object. + + + Converts a string to an instance. + Returns .An instance. + A string that represents range condition header value information. + + is a null reference. + + is not valid range Condition header value information. + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + Represents the value of the Range header. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + + + Determines whether the specified is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Serves as a hash function for an object. + Returns .A hash code for the current object. + + + Converts a string to an instance. + Returns .An instance. + A string that represents range header value information. + + is a null reference. + + is not valid range header value information. + + + Returns . + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + he string to validate. + The version of the string. + + + Returns . + + + Represents a byte-range header value. + + + Initializes a new instance of the class. + + + Determines whether the specified is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Returns . + + + Serves as a hash function for an object. + Returns .A hash code for the current object. + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Returns . + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Represents a header value which can either be a date/time or a timespan value. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + + + Returns . + + + Returns . + + + Determines whether the specified is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Serves as a hash function for an object. + Returns .A hash code for the current object. + + + Converts a string to an instance. + Returns .An instance. + A string that represents retry condition header value information. + + is a null reference. + + is not valid retry condition header value information. + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + Represents a string header value with an optional quality. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + + + Determines whether the specified Object is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Serves as a hash function for an object. + Returns .A hash code for the current object. + + + Converts a string to an instance. + Returns .An instance. + A string that represents quality header value information. + + is a null reference. + + is not valid string with quality header value information. + + + Returns . + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + Returns . + + + Represents a transfer-coding header value. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + + + Determines whether the specified Object is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Serves as a hash function for an object. + Returns .A hash code for the current object. + + + Gets the transfer-coding parameters. + Returns .The transfer-coding parameters. + + + Converts a string to an instance. + Returns .An instance. + A string that represents transfer-coding header value information. + + is a null reference. + + is not valid transfer-coding header value information. + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + Gets the transfer-coding value. + Returns .The transfer-coding value. + + + Represents a transfer-coding header value with optional quality. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class. + + + Converts a string to an instance. + Returns .An instance. + A string that represents transfer-coding value information. + + is a null reference. + + is not valid transfer-coding with quality header value information. + + + Returns . + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + Represents the value of a Via header. + + + Initializes a new instance of the class. + The protocol version of the received protocol. + The host and port that the request or response was received by. + + + Initializes a new instance of the class. + The protocol version of the received protocol. + The host and port that the request or response was received by. + The protocol name of the received protocol. + + + Initializes a new instance of the class. + The protocol version of the received protocol. + The host and port that the request or response was received by. + The protocol name of the received protocol. + The comment field used to identify the software of the recipient proxy or gateway. + + + Gets the comment field used to identify the software of the recipient proxy or gateway. + Returns .The comment field used to identify the software of the recipient proxy or gateway. + + + Determines whether the specified is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Serves as a hash function for an object. + Returns .Returns a hash code for the current object. + + + Converts a string to an instance. + Returns .An instance. + A string that represents via header value information. + + is a null reference. + + is not valid via header value information. + + + Gets the protocol name of the received protocol. + Returns .The protocol name. + + + Gets the protocol version of the received protocol. + Returns .The protocol version. + + + Gets the host and port that the request or response was received by. + Returns .The host and port that the request or response was received by. + + + Creates a new object that is a copy of the current instance. + Returns .A copy of the current instance. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + Represents a warning value used by the Warning header. + + + Initializes a new instance of the class. + The specific warning code. + The host that attached the warning. + A quoted-string containing the warning text. + + + Initializes a new instance of the class. + The specific warning code. + The host that attached the warning. + A quoted-string containing the warning text. + The date/time stamp of the warning. + + + Gets the host that attached the warning. + Returns .The host that attached the warning. + + + Gets the specific warning code. + Returns .The specific warning code. + + + Gets the date/time stamp of the warning. + Returns .The date/time stamp of the warning. + + + Determines whether the specified is equal to the current object. + Returns .true if the specified is equal to the current object; otherwise, false. + The object to compare with the current object. + + + Serves as a hash function for an object. + Returns .A hash code for the current object. + + + Converts a string to an instance. + Returns an instance. + A string that represents authentication header value information. + + is a null reference. + + is not valid authentication header value information. + + + Creates a new object that is a copy of the current instance. + Returns .Returns a copy of the current instance. + + + Gets a quoted-string containing the warning text. + Returns .A quoted-string containing the warning text. + + + Returns a string that represents the current object. + Returns .A string that represents the current object. + + + Determines whether a string is valid information. + Returns .true if is valid information; otherwise, false. + The string to validate. + The version of the string. + + + \ No newline at end of file diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsql.exe b/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsql.exe new file mode 100644 index 0000000..e2b0c2c Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsql.exe differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsql.pdb b/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsql.pdb new file mode 100644 index 0000000..5125bc7 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsql.pdb differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsqlTest.dll b/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsqlTest.dll new file mode 100644 index 0000000..4748d34 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsqlTest.dll differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsqlTest.pdb b/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsqlTest.pdb new file mode 100644 index 0000000..02931b1 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsqlTest.pdb differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsql_Accessor.exe b/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsql_Accessor.exe new file mode 100644 index 0000000..4bead81 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsql_Accessor.exe differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsql_Accessor.pdb b/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsql_Accessor.pdb new file mode 100644 index 0000000..a72bde3 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/acc_pgsql_Accessor.pdb differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/de/Npgsql.resources.dll b/migrate_data/acc_pgsqlTest/bin/Debug/de/Npgsql.resources.dll new file mode 100644 index 0000000..2b269c3 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/de/Npgsql.resources.dll differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/es/Npgsql.resources.dll b/migrate_data/acc_pgsqlTest/bin/Debug/es/Npgsql.resources.dll new file mode 100644 index 0000000..e7404e6 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/es/Npgsql.resources.dll differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/fi/Npgsql.resources.dll b/migrate_data/acc_pgsqlTest/bin/Debug/fi/Npgsql.resources.dll new file mode 100644 index 0000000..356fcb1 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/fi/Npgsql.resources.dll differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/fr/Npgsql.resources.dll b/migrate_data/acc_pgsqlTest/bin/Debug/fr/Npgsql.resources.dll new file mode 100644 index 0000000..ac72763 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/fr/Npgsql.resources.dll differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/ja/Npgsql.resources.dll b/migrate_data/acc_pgsqlTest/bin/Debug/ja/Npgsql.resources.dll new file mode 100644 index 0000000..979eca6 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/ja/Npgsql.resources.dll differ diff --git a/migrate_data/acc_pgsqlTest/bin/Debug/zh-CN/Npgsql.resources.dll b/migrate_data/acc_pgsqlTest/bin/Debug/zh-CN/Npgsql.resources.dll new file mode 100644 index 0000000..add9922 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/bin/Debug/zh-CN/Npgsql.resources.dll differ diff --git a/migrate_data/acc_pgsqlTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/migrate_data/acc_pgsqlTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..61ba01d Binary files /dev/null and b/migrate_data/acc_pgsqlTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsqlTest.csproj.FileListAbsolute.txt b/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsqlTest.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..59255ac --- /dev/null +++ b/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsqlTest.csproj.FileListAbsolute.txt @@ -0,0 +1,31 @@ +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\InitialSeedData.sql +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\acc_pgsqlTest.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\acc_pgsqlTest.pdb +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\acc_pgsql.exe +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\Microsoft.Web.XmlTransform.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\Mono.Security.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\Newtonsoft.Json.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\Npgsql.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\NuGet.Core.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\Renci.SshNet.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\System.Net.Http.Formatting.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\System.Net.Http.WebRequest.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\System.Net.Http.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\acc_pgsql.pdb +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\Newtonsoft.Json.xml +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\Npgsql.xml +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\Renci.SshNet.xml +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\System.Net.Http.Formatting.xml +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\System.Net.Http.WebRequest.xml +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\System.Net.Http.xml +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\ja\Npgsql.resources.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\zh-CN\Npgsql.resources.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\de\Npgsql.resources.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\fi\Npgsql.resources.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\fr\Npgsql.resources.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\es\Npgsql.resources.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\acc_pgsql_Accessor.exe +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\bin\Debug\acc_pgsql_Accessor.pdb +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\obj\Debug\acc_pgsqlTest.csprojResolveAssemblyReference.cache +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\obj\Debug\acc_pgsqlTest.dll +\\Mac\Home\Projects\VSProjects\Data_migration\migrate_data\acc_pgsqlTest\obj\Debug\acc_pgsqlTest.pdb diff --git a/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsqlTest.csprojResolveAssemblyReference.cache b/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsqlTest.csprojResolveAssemblyReference.cache new file mode 100644 index 0000000..670ee5f Binary files /dev/null and b/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsqlTest.csprojResolveAssemblyReference.cache differ diff --git a/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsqlTest.dll b/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsqlTest.dll new file mode 100644 index 0000000..4748d34 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsqlTest.dll differ diff --git a/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsqlTest.pdb b/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsqlTest.pdb new file mode 100644 index 0000000..02931b1 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsqlTest.pdb differ diff --git a/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsql_Accessor.exe b/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsql_Accessor.exe new file mode 100644 index 0000000..4bead81 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsql_Accessor.exe differ diff --git a/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsql_Accessor.pdb b/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsql_Accessor.pdb new file mode 100644 index 0000000..a72bde3 Binary files /dev/null and b/migrate_data/acc_pgsqlTest/obj/Debug/acc_pgsql_Accessor.pdb differ diff --git a/migrate_data/migrate_data.sln b/migrate_data/migrate_data.sln index 0560c9b..9cbe49d 100644 --- a/migrate_data/migrate_data.sln +++ b/migrate_data/migrate_data.sln @@ -5,20 +5,58 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "migrate_data", "migrate_dat EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "acc_pgsql", "acc_pgsql\acc_pgsql.csproj", "{5F9533DE-6CC6-4131-A85C-203ECFB92FBE}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "acc_pgsqlTest", "acc_pgsqlTest\acc_pgsqlTest.csproj", "{E1BDFD46-3E8D-488E-8169-447DD238A804}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{01D9A7DE-2513-4145-BAFA-F3241EB60233}" + ProjectSection(SolutionItems) = preProject + Local.testsettings = Local.testsettings + migrate_data.vsmdi = migrate_data.vsmdi + TraceAndTestImpact.testsettings = TraceAndTestImpact.testsettings + EndProjectSection +EndProject Global + GlobalSection(TestCaseManagementSettings) = postSolution + CategoryFile = migrate_data.vsmdi + EndGlobalSection GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|Mixed Platforms = Debug|Mixed Platforms Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|Mixed Platforms = Release|Mixed Platforms Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D6163919-3063-4FC2-9C9B-3A1474D0B93F}.Debug|Any CPU.ActiveCfg = Debug|x86 + {D6163919-3063-4FC2-9C9B-3A1474D0B93F}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 + {D6163919-3063-4FC2-9C9B-3A1474D0B93F}.Debug|Mixed Platforms.Build.0 = Debug|x86 {D6163919-3063-4FC2-9C9B-3A1474D0B93F}.Debug|x86.ActiveCfg = Debug|x86 {D6163919-3063-4FC2-9C9B-3A1474D0B93F}.Debug|x86.Build.0 = Debug|x86 + {D6163919-3063-4FC2-9C9B-3A1474D0B93F}.Release|Any CPU.ActiveCfg = Release|x86 + {D6163919-3063-4FC2-9C9B-3A1474D0B93F}.Release|Mixed Platforms.ActiveCfg = Release|x86 + {D6163919-3063-4FC2-9C9B-3A1474D0B93F}.Release|Mixed Platforms.Build.0 = Release|x86 {D6163919-3063-4FC2-9C9B-3A1474D0B93F}.Release|x86.ActiveCfg = Release|x86 {D6163919-3063-4FC2-9C9B-3A1474D0B93F}.Release|x86.Build.0 = Release|x86 + {5F9533DE-6CC6-4131-A85C-203ECFB92FBE}.Debug|Any CPU.ActiveCfg = Debug|x86 + {5F9533DE-6CC6-4131-A85C-203ECFB92FBE}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 + {5F9533DE-6CC6-4131-A85C-203ECFB92FBE}.Debug|Mixed Platforms.Build.0 = Debug|x86 {5F9533DE-6CC6-4131-A85C-203ECFB92FBE}.Debug|x86.ActiveCfg = Debug|x86 {5F9533DE-6CC6-4131-A85C-203ECFB92FBE}.Debug|x86.Build.0 = Debug|x86 + {5F9533DE-6CC6-4131-A85C-203ECFB92FBE}.Release|Any CPU.ActiveCfg = Release|x86 + {5F9533DE-6CC6-4131-A85C-203ECFB92FBE}.Release|Mixed Platforms.ActiveCfg = Release|x86 + {5F9533DE-6CC6-4131-A85C-203ECFB92FBE}.Release|Mixed Platforms.Build.0 = Release|x86 {5F9533DE-6CC6-4131-A85C-203ECFB92FBE}.Release|x86.ActiveCfg = Release|x86 {5F9533DE-6CC6-4131-A85C-203ECFB92FBE}.Release|x86.Build.0 = Release|x86 + {E1BDFD46-3E8D-488E-8169-447DD238A804}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E1BDFD46-3E8D-488E-8169-447DD238A804}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E1BDFD46-3E8D-488E-8169-447DD238A804}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {E1BDFD46-3E8D-488E-8169-447DD238A804}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {E1BDFD46-3E8D-488E-8169-447DD238A804}.Debug|x86.ActiveCfg = Debug|Any CPU + {E1BDFD46-3E8D-488E-8169-447DD238A804}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E1BDFD46-3E8D-488E-8169-447DD238A804}.Release|Any CPU.Build.0 = Release|Any CPU + {E1BDFD46-3E8D-488E-8169-447DD238A804}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {E1BDFD46-3E8D-488E-8169-447DD238A804}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {E1BDFD46-3E8D-488E-8169-447DD238A804}.Release|x86.ActiveCfg = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/migrate_data/migrate_data.suo b/migrate_data/migrate_data.suo index 8e8400c..bb90dac 100644 Binary files a/migrate_data/migrate_data.suo and b/migrate_data/migrate_data.suo differ diff --git a/migrate_data/migrate_data.vsmdi b/migrate_data/migrate_data.vsmdi new file mode 100644 index 0000000..89bef8a --- /dev/null +++ b/migrate_data/migrate_data.vsmdi @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/migrate_data/migrate_data/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/migrate_data/migrate_data/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 0c9247d..fcdfdfc 100644 Binary files a/migrate_data/migrate_data/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/migrate_data/migrate_data/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ