albacore 0.3.4 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/.bundle/config +2 -0
- data/.travis.yml +1 -0
- data/Gemfile +4 -1
- data/lib/albacore/assemblyinfo.rb +2 -1
- data/lib/albacore/config/netversion.rb +11 -8
- data/lib/albacore/output.rb +17 -14
- data/lib/albacore/sqlcmd.rb +3 -1
- data/lib/albacore/xunittestrunner.rb +4 -0
- data/lib/version.rb +1 -1
- data/spec/assemblyinfo_spec.rb +9 -0
- data/spec/msbuild_spec.rb +287 -287
- data/spec/mstesttestrunner_spec.rb +144 -144
- data/spec/netversion_spec.rb +53 -0
- data/spec/nugetinstall_spec.rb +46 -46
- data/spec/output_spec.rb +30 -0
- data/spec/sqlcmd_spec.rb +1 -1
- data/spec/support/CodeCoverage/xunit/assemblies/xunit.xml +2604 -2604
- data/spec/support/TestSolution/LocalTestRun.testrunconfig +4 -4
- data/spec/support/TestSolution/TestSolution.FailingTests/TestSolution.FailingTests.csproj +94 -94
- data/spec/support/TestSolution/TestSolution.FluentMigrator/TestSolution.FluentMigrator.csproj +94 -94
- data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/Properties/AssemblyInfo.cs +36 -36
- data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/TestSolution.MSTestTests.NET40.csproj +52 -52
- data/spec/support/TestSolution/TestSolution.MSTestTests/TestSolution.MSTestTests.csproj +90 -90
- data/spec/support/TestSolution/TestSolution.MSpecTests/TestSolution.MSpecTests.csproj +103 -103
- data/spec/support/TestSolution/TestSolution.SpecFlow/TestSolution.SpecFlow.csproj +115 -115
- data/spec/support/TestSolution/TestSolution.Tests/TestSolution.Tests.csproj +100 -100
- data/spec/support/TestSolution/TestSolution.XUnitTests/TestSolution.XUnitTests.csproj +101 -101
- data/spec/support/TestSolution/TestSolution.sln +75 -75
- data/spec/support/TestSolution/TestSolution.vsmdi +5 -5
- data/spec/support/TestSolution/TestSolution/TestSolution.csproj +90 -90
- data/spec/support/Tools/MSTest-2010/MSTest.exe.config +31 -31
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll.manifest +251 -251
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.vsto +105 -105
- data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.dll.tdnet +5 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/CommandLine.xml +504 -504
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.1.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.5.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0 - VS2008.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0 - VS2010.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1 - VS2008.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1 - VS2010.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0 - VS2008.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0 - VS2010.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1 - VS2008.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1 - VS2010.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunner.bat +16 -16
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunnerSilent.bat +16 -16
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/License.txt +53 -53
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.GallioAdapter.plugin +42 -42
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.dll.tdnet +5 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/install.ps1 +5 -5
- data/spec/support/Tools/XUnit-v1.9/EULA.txt +28 -28
- data/spec/support/Tools/XUnit-v1.9/HTML.xslt +125 -125
- data/spec/support/Tools/XUnit-v1.9/NUnitXml.xslt +120 -120
- data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.exe.config +20 -20
- data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.x86.exe.config +20 -20
- data/spec/support/Tools/XUnit-v1.9/xunit.console.exe.config +20 -20
- data/spec/support/Tools/XUnit-v1.9/xunit.console.x86.exe.config +20 -20
- data/spec/support/Tools/XUnit-v1.9/xunit.dll.tdnet +4 -4
- data/spec/support/Tools/XUnit-v1.9/xunit.extensions.xml +805 -805
- data/spec/support/Tools/XUnit-v1.9/xunit.runner.utility.xml +1212 -1212
- data/spec/support/Tools/XUnit-v1.9/xunit.xml +2604 -2604
- data/spec/support/assemblyinfotester.rb +1 -0
- data/spec/xunit_spec.rb +38 -0
- metadata +14 -7
data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.vsto
CHANGED
@@ -1,25 +1,25 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
3
|
-
<assemblyIdentity name="Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.vsto" version="1.0.0.0" publicKeyToken="c3bce3770c238a49" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1"></assemblyIdentity>
|
4
|
-
<description asmv2:publisher="Microsoft" asmv2:product="Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn" xmlns="urn:schemas-microsoft-com:asm.v1"></description>
|
5
|
-
<deployment install="false"></deployment>
|
6
|
-
<dependency>
|
7
|
-
<dependentAssembly dependencyType="install" codebase="Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll.manifest" size="25201">
|
8
|
-
<assemblyIdentity name="Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll" version="1.0.0.0" publicKeyToken="c3bce3770c238a49" language="neutral" processorArchitecture="msil" type="win32"></assemblyIdentity>
|
9
|
-
<hash>
|
10
|
-
<dsig:Transforms>
|
11
|
-
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform>
|
12
|
-
</dsig:Transforms>
|
13
|
-
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod>
|
14
|
-
<dsig:DigestValue>7CY0+o2SExDl7IH9h/dzrDzgUWY=</dsig:DigestValue>
|
15
|
-
</hash>
|
16
|
-
</dependentAssembly>
|
17
|
-
</dependency>
|
18
|
-
<compatibleFrameworks xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2" xmlns="urn:schemas-microsoft-com:clickonce.v2">
|
19
|
-
<framework targetVersion="4.0" profile="Client" supportedRuntime="4.0.30311"></framework>
|
20
|
-
<framework targetVersion="4.0" profile="Full" supportedRuntime="4.0.30311"></framework>
|
21
|
-
</compatibleFrameworks>
|
22
|
-
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
3
|
+
<assemblyIdentity name="Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.vsto" version="1.0.0.0" publicKeyToken="c3bce3770c238a49" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1"></assemblyIdentity>
|
4
|
+
<description asmv2:publisher="Microsoft" asmv2:product="Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn" xmlns="urn:schemas-microsoft-com:asm.v1"></description>
|
5
|
+
<deployment install="false"></deployment>
|
6
|
+
<dependency>
|
7
|
+
<dependentAssembly dependencyType="install" codebase="Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll.manifest" size="25201">
|
8
|
+
<assemblyIdentity name="Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll" version="1.0.0.0" publicKeyToken="c3bce3770c238a49" language="neutral" processorArchitecture="msil" type="win32"></assemblyIdentity>
|
9
|
+
<hash>
|
10
|
+
<dsig:Transforms>
|
11
|
+
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform>
|
12
|
+
</dsig:Transforms>
|
13
|
+
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod>
|
14
|
+
<dsig:DigestValue>7CY0+o2SExDl7IH9h/dzrDzgUWY=</dsig:DigestValue>
|
15
|
+
</hash>
|
16
|
+
</dependentAssembly>
|
17
|
+
</dependency>
|
18
|
+
<compatibleFrameworks xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2" xmlns="urn:schemas-microsoft-com:clickonce.v2">
|
19
|
+
<framework targetVersion="4.0" profile="Client" supportedRuntime="4.0.30311"></framework>
|
20
|
+
<framework targetVersion="4.0" profile="Full" supportedRuntime="4.0.30311"></framework>
|
21
|
+
</compatibleFrameworks>
|
22
|
+
|
23
23
|
<publisherIdentity name="CN=Microsoft Corporation, OU=MOPR, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" issuerKeyHash="29bac3cae771e3a38b83364c99c14fbc1352af16" xmlns="urn:schemas-microsoft-com:asm.v2"></publisherIdentity><Signature xmlns="http://www.w3.org/2000/09/xmldsig#" Id="StrongNameSignature">
|
24
24
|
<SignedInfo>
|
25
25
|
<CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"></CanonicalizationMethod>
|
@@ -41,7 +41,7 @@
|
|
41
41
|
<Exponent>AQAB</Exponent>
|
42
42
|
</RSAKeyValue>
|
43
43
|
</KeyValue>
|
44
|
-
<msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata">
|
44
|
+
<msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata">
|
45
45
|
<r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="457e6829f1ce4144208e212b9e95e7dbf4150a38" Description="tmp218D.tmp" Url="http://microsoft.com"><as:assemblyIdentity name="Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.vsto" version="1.0.0.0" publicKeyToken="c3bce3770c238a49" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1"></as:assemblyIdentity></as:ManifestInformation><as:SignedBy></as:SignedBy><as:AuthenticodePublisher><as:X509SubjectName>CN=Microsoft Corporation, OU=MOPR, O=Microsoft Corporation, L=Redmond, S=Washington, C=US</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature xmlns="http://www.w3.org/2000/09/xmldsig#" Id="AuthenticodeSignature">
|
46
46
|
<SignedInfo>
|
47
47
|
<CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"></CanonicalizationMethod>
|
@@ -64,87 +64,87 @@
|
|
64
64
|
</RSAKeyValue>
|
65
65
|
</KeyValue>
|
66
66
|
<X509Data><X509Certificate>MIIEhTCCA22gAwIBAgIKYQU+DAAAAAAAMTANBgkqhkiG9w0BAQUFADB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSMwIQYDVQQDExpNaWNyb3NvZnQgQ29kZSBTaWduaW5nIFBDQTAeFw0wOTA3MTMyMjU5MzBaFw0xMDEwMTMyMzA5MzBaMIGDMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMQ0wCwYDVQQLEwRNT1BSMR4wHAYDVQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDNgZY4rlyi8sHf3tCrlY3WPJ0fi8Ndhi5d8LFy9ausiGq12rEiewvIyKVLkV4iE+n59SOdtfRudq7v7qQ8x8TAWVw/q7NzMyamYoFheaFi9G6IldBu3cef0qRREXZhunCKZaGWFomnXYHQRGbl21aeQMr83HYkLkQwAOXWfXuVEdVYHaPoTwvJiNyi1lOZbMpjyplqmpJeTE0R6C/TW1teX1Kjcy2lu4RFDYwZFXbLCNqapnAV6E3saf1dsmuP7SlRNziLxkZJFZRQmLD0aKTX3glxZ3Sed4wdhWuX6udfRczg5nEN0WMAk3sxmI4LtBO9s9Du8d8h7qlgYe43Qz3DAgMBAAGjggECMIH/MBMGA1UdJQQMMAoGCCsGAQUFBwMDMB0GA1UdDgQWBBT5gfQvtpXoptJsukA7cuTtNf3zlTAOBgNVHQ8BAf8EBAMCB4AwHwYDVR0jBBgwFoAUV0V0HF2w9shDBeCMVC2PMqf+SJYwSQYDVR0fBEIwQDA+oDygOoY4aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvQ29kZVNpZ1BDQS5jcmwwTQYIKwYBBQUHAQEEQTA/MD0GCCsGAQUFBzAChjFodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL0NvZGVTaWdQQ0EuY3J0MA0GCSqGSIb3DQEBBQUAA4IBAQBhLY+e043PFVhIh9CMNahnGEl/cxF0VJ5xoLSGjBSJA9v7jYLEhKsYbPaF5pPEVv8rDPp5g4ZIzc9okR/w/IAB8mcfxATnPTEXZE5x7pgK1zFzHD1PIs+VJRMd2E/LlnvHJcdFroARg4f+K2tm+74bkYhsvBkoxnPa+UbTasOIMbD6egrIK9nk3VrOCv+Vpjraahdga9cP94JUVvSW9i67n59nOsxkT9C5N6VmPLI+v2IqWlijCRZMEN2pHSNhggIgsBUG/KwEK7hgatcHcZHWmRLw9MPPEJnRhLP3eX5xRrjVg41JjAgWJlB/uXH433qZ9hGiVYqDkJf4Nr+B7XdH</X509Certificate><X509Certificate>MIIGgTCCBGmgAwIBAgIKYRUIJwAAAAAADDANBgkqhkiG9w0BAQUFADBfMRMwEQYKCZImiZPyLGQBGRYDY29tMRkwFwYKCZImiZPyLGQBGRYJbWljcm9zb2Z0MS0wKwYDVQQDEyRNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDYwMTI1MjMyMjMyWhcNMTcwMTI1MjMzMjMyWjB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSMwIQYDVQQDExpNaWNyb3NvZnQgQ29kZSBTaWduaW5nIFBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ+N34U3jLEGVmY2TtQK6zYjkR6vq41Y6cTPwZ86CiTExMResO4VFMX6PpkzaxlpcvR8BV/lmSVE1zUZipDcKI6QDO/VkGGt3twYcC2DyW+vhSz43bm5MP1xeByD/cipuYJnDXq4wQnCvBaXVz8cmNNp1zCQkJCNMB/YJtSee4jZ4gntl0lF6wRSgXV7uLUiuC5Wu9fPqU48CoOiqDrFrbYBDmrPIrQjH2zVJ+e3fsG01TKteSUcQobinYX0V9obWS8tJpIpxbPXhaOeYFqU5nuce16CNEtt/9TuJ9Ci3NGQDM59DhV8iKw0x8BsmIRKyUR5aCjfIoMNuIosSGHi/hECAwEAAaOCAiMwggIfMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRXRXQcXbD2yEMF4IxULY8yp/5IljALBgNVHQ8EBAMCAcYwDwYDVR0TAQH/BAUwAwEB/zCBmAYDVR0jBIGQMIGNgBQOrIJgQFYnl+UlE/wq4QpTlVnkpKFjpGEwXzETMBEGCgmSJomT8ixkARkWA2NvbTEZMBcGCgmSJomT8ixkARkWCW1pY3Jvc29mdDEtMCsGA1UEAxMkTWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5ghB5rRahSqClrUxzWPQHEy5lMFAGA1UdHwRJMEcwRaBDoEGGP2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL21pY3Jvc29mdHJvb3RjZXJ0LmNybDBUBggrBgEFBQcBAQRIMEYwRAYIKwYBBQUHMAKGOGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljcm9zb2Z0Um9vdENlcnQuY3J0MHYGA1UdIARvMG0wawYJKwYBBAGCNxUvMF4wXAYIKwYBBQUHAgIwUB5OAEMAbwBwAHkAcgBpAGcAaAB0ACAAqQAgADIAMAAwADYAIABNAGkAYwByAG8AcwBvAGYAdAAgAEMAbwByAHAAbwByAGEAdABpAG8AbgAuMBMGA1UdJQQMMAoGCCsGAQUFBwMDMA0GCSqGSIb3DQEBBQUAA4ICAQAwvLAgpGKgp+85JmE93KzGmdCGxC71gzJlXiI+m9aG+Oi2n8qL1jt1C6GRPkzdZHSMSfKIjBhnbP4VZka4OkZCl8iRN9Qksees0+pBFIN308lPBV+jFFK/lqQvPlZbEHXOU8POBVRptGXJJKUP4SW4GrlN5QK5UB5Ps5gMHZUC7iJZrSLLBXQLBEV7BFng2A+z60z4YN3CeJ7Rup9r9/PufkQRQNK9uptLFghupL5V5KY4EqNI9BxVeoog0X3+kduUjy/Ce2umZIVPo+UsNCldC7/1xzgvxCDEVjH2ac6F+AqR7NDWrro4BQzrbk9MnAMpqqL8GKApDA1cXFYjV9oclg3IJjbBRMvl4eZvieeP6Zi1c9N44+2jATx05V68bPYhiWcF7JedtbH9r6bpcqXDNOEvn/n0ajniLQSCW/zQnK58nRH55rVTGXS6OUo5631Cs0o7Nz3CSnsnmOfiTpsbSlQ4aiM3vmq3SO7qQg1JJJGOtwQul2/k50W7j039YNnXWcLYgNZgNHu3oZMg/oG4qqVcCemKDb4oTX7X6A/tZXjRMV+5ZtvfQucLzAIHjd//IAajRWW0szKNLpHiTbSpyfq8awQOsp/qn96kyQqW9I332Jio8IUCCFmkIKYsCxryUgbtaeVkGBvgo6veynwUYUO4ZfU2o1UTK2csTRswTA==</X509Certificate></X509Data> </KeyInfo>
|
67
|
-
<Object>
|
68
|
-
<as:Timestamp>MIIRoAYJKoZIhvcNAQcCoIIRkTCCEY0CAQMxCTAHBgUrDgMCGjCCARMGCSqGSIb3DQEHAaCCAQQE
|
69
|
-
ggEAOwCYXjgB27ZFQLFL8MvrZ5xtftE520FXiGV+Ut4rqNFRxcm2okkGw/vJWEl96OZHxJXDXcvy
|
70
|
-
7hY5GHCJh9BopEdB5NRi8YMTREUAtgrvcRX1NAz4uznQhKRV5bg+bY7HIUqeF5/b6O63O7lJ7bJc
|
71
|
-
8EEoda20S61wslLdkCitKuAl/r3EyO2vdT3IXQBqRsM/kpmzQdw/s2ezTt0ZTZBxyxD69f8aBcc1
|
72
|
-
hSga0P3qRZXxlE0qw4YBgOD7A+UoYvoclaprLkz15+Cxrk15nChVQtxFzoioSDSbPk06I9u6B2fH
|
73
|
-
bvqTH2lQRRARVF2vsIiPAFowkAf8igXLhBlaBf4aM6CCDlYwggYHMIID76ADAgECAgphFmg0AAAA
|
74
|
-
AAAcMA0GCSqGSIb3DQEBBQUAMF8xEzARBgoJkiaJk/IsZAEZFgNjb20xGTAXBgoJkiaJk/IsZAEZ
|
75
|
-
FgltaWNyb3NvZnQxLTArBgNVBAMTJE1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0
|
76
|
-
eTAeFw0wNzA0MDMxMjUzMDlaFw0yMTA0MDMxMzAzMDlaMHcxCzAJBgNVBAYTAlVTMRMwEQYDVQQI
|
77
|
-
EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y
|
78
|
-
YXRpb24xITAfBgNVBAMTGE1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQTCCASIwDQYJKoZIhvcNAQEB
|
79
|
-
BQADggEPADCCAQoCggEBAJ+hbLHf20iSKnxrLhnhveLjxZlRI1Ctzt0YTiQP7tGn0UytdDAgEesH
|
80
|
-
1VSVFUmUG0KSrphcMCbaAGvoe73siQcP9w4EmPCJzB/LMySHnfL0Zxws/HvniB3q506jocEjU8qN
|
81
|
-
+kXPCdBer9CwQgSi+aZsk2fXKNxGU7CG0OUoRi4nrIZPVVIM5AMs+2qQkDBuh/NZMJ36ftaXs+gh
|
82
|
-
l3740hPzCLdTbVK0RZCfSABKR2YRJylmqJfk0waBSqL5hKcRRxQJgp+E7VV4/gGaHVAIhQAQMEbt
|
83
|
-
t94jRrvELVSfrx54QTF3zJvfO4OToWECtR0Nsfz3m7IBziJLVP/5BcPCIAsCAwEAAaOCAaswggGn
|
84
|
-
MA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFCM0+NlSRnAK7UD7dvuzK7DDNbMPMAsGA1UdDwQE
|
85
|
-
AwIBhjAQBgkrBgEEAYI3FQEEAwIBADCBmAYDVR0jBIGQMIGNgBQOrIJgQFYnl+UlE/wq4QpTlVnk
|
86
|
-
pKFjpGEwXzETMBEGCgmSJomT8ixkARkWA2NvbTEZMBcGCgmSJomT8ixkARkWCW1pY3Jvc29mdDEt
|
87
|
-
MCsGA1UEAxMkTWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5ghB5rRahSqClrUxz
|
88
|
-
WPQHEy5lMFAGA1UdHwRJMEcwRaBDoEGGP2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3Js
|
89
|
-
L3Byb2R1Y3RzL21pY3Jvc29mdHJvb3RjZXJ0LmNybDBUBggrBgEFBQcBAQRIMEYwRAYIKwYBBQUH
|
90
|
-
MAKGOGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljcm9zb2Z0Um9vdENlcnQu
|
91
|
-
Y3J0MBMGA1UdJQQMMAoGCCsGAQUFBwMIMA0GCSqGSIb3DQEBBQUAA4ICAQAQl4rDXANENt3ptK13
|
92
|
-
2855UU0BsS50cVttDBOrzr57j7gu1BKijG1iuFcCy04gE1CZ3XpA4le7r1iaHOEdAYasu3jyi9Ds
|
93
|
-
OwHu4r6PCgXIjUji8FMV3U+rkuTnjWrVgMHmlPIGL4UD6ZEqJCJw+/b85HiZLg33B+JwvBhOnY5r
|
94
|
-
CnKVuKE5nGctxVEO6mJcPxaYiyA/4gcaMvnMMUp2MT0rcgvI6nA9/4UKE9/CCmGO8Ne4F+tOi3/F
|
95
|
-
NSteo7/rvH0LQnvUU3Ih7jDKu3hlXFsBFwoUDtLaFJj1PLlmWLMtL+f5hYbMUVbonXCUbKw5TNT2
|
96
|
-
eb+qGHpiKe+imyk0BncaYsk9Hm0fgvALxyy7z0Oz5fnsfbXjpKh0NbhOxXEjEiZ2CzxSjHFaRkMU
|
97
|
-
vLOzsE1nyJ9C/4B5IYCeFTBm6EISXhrIniIh0EPpK+m79EjMLNTYMoBMJipIJF9a6lbvpt6Znco6
|
98
|
-
b72BJ3QGEe52Ib+bgsEnVLaxaj2JoXZhtG6hE6a/qkfwEm/9ijJssv7fUciMI8lmvZ0dhxJkAj0t
|
99
|
-
r1mPuOQh5bWwymO0eFQF1EEuUKyUsKV4q7OglnUa2ZKHE3UiLzKoCG6gW4wlv6DvhMoh1useT8ma
|
100
|
-
7kng9wFlb4kLfchpyOZu6qeXzjEp/w7FW1zYTRuh2Povnj8uVRZryROj/TCCBMowggOyoAMCAQIC
|
101
|
-
CmEEs/UAAAAAAA0wDQYJKoZIhvcNAQEFBQAwdzELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp
|
102
|
-
bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEh
|
103
|
-
MB8GA1UEAxMYTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBMB4XDTA4MDcyNTE5MTM0NVoXDTExMDcy
|
104
|
-
NTE5MjM0NVowgbMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS
|
105
|
-
ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xDTALBgNVBAsTBE1PUFIxJzAl
|
106
|
-
BgNVBAsTHm5DaXBoZXIgRFNFIEVTTjo5RTc4LTg2NEItMDM5RDElMCMGA1UEAxMcTWljcm9zb2Z0
|
107
|
-
IFRpbWUtU3RhbXAgU2VydmljZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKtGL7yo
|
108
|
-
FPL4Rj8MBaGkY0UFf5rpM3LMJ9My7JjD4DSIhc6hEpeuSFBOSCB/cORZM/yZW7kHgEgovI24+mYC
|
109
|
-
ZrXxfxxQliiTVY2BVapwW6XJzu8u4uclw3ZvKQufLMhTgJrBDeO9p0W/Md/mhot9iQGLHHhYOLLd
|
110
|
-
k0pbnh3XnMbwxE3QvydKB5QEcQKIDXDm+CrnDmHjmEvR3atUtjf7xkb9pBy8/6/sspeA3LiT/bgi
|
111
|
-
qJ0lWXA+XHscQSn+c5kiSYHXVSbA7PJOKFRiO3AtYZMdUNWfAcIFw1UaSoekAIZUoHtisuoP+l1c
|
112
|
-
xSoRgpe+hhsdq7erCin8zM00ib9Atk8CAwEAAaOCARkwggEVMB0GA1UdDgQWBBSghTFeh64PqgoE
|
113
|
-
6+HA02S9PLtp9TAfBgNVHSMEGDAWgBQjNPjZUkZwCu1A+3b7syuwwzWzDzBUBgNVHR8ETTBLMEmg
|
114
|
-
R6BFhkNodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNyb3NvZnRU
|
115
|
-
aW1lU3RhbXBQQ0EuY3JsMFgGCCsGAQUFBwEBBEwwSjBIBggrBgEFBQcwAoY8aHR0cDovL3d3dy5t
|
116
|
-
aWNyb3NvZnQuY29tL3BraS9jZXJ0cy9NaWNyb3NvZnRUaW1lU3RhbXBQQ0EuY3J0MBMGA1UdJQQM
|
117
|
-
MAoGCCsGAQUFBwMIMA4GA1UdDwEB/wQEAwIGwDANBgkqhkiG9w0BAQUFAAOCAQEAR3FPtkhFwAjr
|
118
|
-
nC/TJVvbZ1ERkqbZ2bIUmibC/QbBzNeI9aY1tc0rtmtYas35nfNa60YvofqnH316QrKw0RoJKFRs
|
119
|
-
b5mLOPw65MEkqnJMEgQv8dR6djvFz3EnC238OGenxSJiK3t/wXasp8UmTKmvmN2KOF3PZaSBLqnv
|
120
|
-
VgJMuQi+ZcQeiyEtbqfydWS03Bpr0PEl5cLngEQ51C8KeX4BKqd4W6NrW84J7zk6ObfEZ1O5qvNh
|
121
|
-
/515489IZ/+ryMYrYgmU0B+iePdzSTtYU8EJq0wGC9VAKH72sWbFv1LEvj474PmOdI3mIgzBxjOY
|
122
|
-
tXnoDPcAfOqyTsyAmhYtyKQQBaGCA3kwggJhAgEBMIHjoYG5pIG2MIGzMQswCQYDVQQGEwJVUzET
|
123
|
-
MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0
|
124
|
-
IENvcnBvcmF0aW9uMQ0wCwYDVQQLEwRNT1BSMScwJQYDVQQLEx5uQ2lwaGVyIERTRSBFU046OUU3
|
125
|
-
OC04NjRCLTAzOUQxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiJQoBATAJ
|
126
|
-
BgUrDgMCGgUAAxUAfLAkTHzsUoPn79rfXMxYdy3Wf0KggcEwgb6kgbswgbgxCzAJBgNVBAYTAlVT
|
127
|
-
MRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv
|
128
|
-
ZnQgQ29ycG9yYXRpb24xDDAKBgNVBAsTA0FPQzEnMCUGA1UECxMebkNpcGhlciBOVFMgRVNOOjIy
|
129
|
-
QTEtMjA4RS04N0IwMSswKQYDVQQDEyJNaWNyb3NvZnQgVGltZSBTb3VyY2UgTWFzdGVyIENsb2Nr
|
130
|
-
MA0GCSqGSIb3DQEBBQUAAgUAz0xaYzAiGA8yMDEwMDMxODA3NTMwN1oYDzIwMTAwMzE5MDc1MzA3
|
131
|
-
WjB4MD4GCisGAQQBhFkKBAExMDAuMAoCBQDPTFpjAgEAMAoCAQACAgCtAgH/MAgCAQACAwMZ5DAK
|
132
|
-
AgUAz02r4wIBADA2BgorBgEEAYRZCgQCMSgwJjAMBgorBgEEAYRZCgMBoAowCAIBAAIDD0JAoQow
|
133
|
-
CAIBAAIDB6EgMA0GCSqGSIb3DQEBBQUAA4IBAQAfL/jNeBgdtutQt9I+oM3IHaqbp6YPhaK5vppn
|
134
|
-
jJyJZl4dXUi3cl11aVuQ1Hi+sXUJ9VC164tBGJblBkX9G6PpbE2HZexz1XKXqLrbCcfKneaRpwDg
|
135
|
-
TbHZ56Noi92RRK3yQ/CEpdV0znfKMctuJWxiy83cL/8IpHZ/cs0hA1DmjnYxHLiBRjOvSMJjM0yf
|
136
|
-
ie+JQbY20qVA2U0GIITJT6VStPdYyarCjPwYhOfYqf3KMnK+dW79B8xmDktm1BrcTcWx0dz1stK4
|
137
|
-
oDy5eQDzKzoapQL/h3gI3/97/A8fkaEhgTkHofMu3/zKkaVFWD+z94pbt0dh7PWhcg7aKZeTnqNB
|
138
|
-
MYICCjCCAgYCAQEwgYUwdzELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNV
|
139
|
-
BAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEhMB8GA1UEAxMYTWlj
|
140
|
-
cm9zb2Z0IFRpbWUtU3RhbXAgUENBAgphBLP1AAAAAAANMAcGBSsOAwIaoF0wGAYJKoZIhvcNAQkD
|
141
|
-
MQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTAwMzE4MTEzNzMzWjAjBgkqhkiG9w0BCQQx
|
142
|
-
FgQUHfpJ+aI9ODbDK/BctJe11VRVLoEwDQYJKoZIhvcNAQEFBQAEggEAAQXOCXQVVjYof5+hBgxU
|
143
|
-
+pRiou+cMZQzDKPbXuIRIcRCwCJpdEnsjI4BfirpuztnopxwH5SG1FGEZA5e+Hp9eCBSRuRAx3Ib
|
144
|
-
FoCN5z9HAZ1dsLH1zdChAxHu8V/clI9edd9n3FlDY/pX5SAX++vsRmahvABhR8f++BPqg2wYGxVR
|
145
|
-
XI9dX8bRkW1nnWpcPE7cviXmrbGtT6R8HqgTdGx952ydPM+dxSet0JpZhJ5G0gb4Ib/stpTZXqKB
|
146
|
-
G0PIVhQaXBmFSSdZ28FmQbZBXPX7H/IzMe0Q3cMCF4Sx4cciu5zQRLP7v1se4gub1vPGtHRRm9aK
|
147
|
-
X9LkBKVweOfBhVC+SQ==</as:Timestamp>
|
148
|
-
</Object></Signature></r:issuer></r:license>
|
67
|
+
<Object>
|
68
|
+
<as:Timestamp>MIIRoAYJKoZIhvcNAQcCoIIRkTCCEY0CAQMxCTAHBgUrDgMCGjCCARMGCSqGSIb3DQEHAaCCAQQE
|
69
|
+
ggEAOwCYXjgB27ZFQLFL8MvrZ5xtftE520FXiGV+Ut4rqNFRxcm2okkGw/vJWEl96OZHxJXDXcvy
|
70
|
+
7hY5GHCJh9BopEdB5NRi8YMTREUAtgrvcRX1NAz4uznQhKRV5bg+bY7HIUqeF5/b6O63O7lJ7bJc
|
71
|
+
8EEoda20S61wslLdkCitKuAl/r3EyO2vdT3IXQBqRsM/kpmzQdw/s2ezTt0ZTZBxyxD69f8aBcc1
|
72
|
+
hSga0P3qRZXxlE0qw4YBgOD7A+UoYvoclaprLkz15+Cxrk15nChVQtxFzoioSDSbPk06I9u6B2fH
|
73
|
+
bvqTH2lQRRARVF2vsIiPAFowkAf8igXLhBlaBf4aM6CCDlYwggYHMIID76ADAgECAgphFmg0AAAA
|
74
|
+
AAAcMA0GCSqGSIb3DQEBBQUAMF8xEzARBgoJkiaJk/IsZAEZFgNjb20xGTAXBgoJkiaJk/IsZAEZ
|
75
|
+
FgltaWNyb3NvZnQxLTArBgNVBAMTJE1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0
|
76
|
+
eTAeFw0wNzA0MDMxMjUzMDlaFw0yMTA0MDMxMzAzMDlaMHcxCzAJBgNVBAYTAlVTMRMwEQYDVQQI
|
77
|
+
EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y
|
78
|
+
YXRpb24xITAfBgNVBAMTGE1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQTCCASIwDQYJKoZIhvcNAQEB
|
79
|
+
BQADggEPADCCAQoCggEBAJ+hbLHf20iSKnxrLhnhveLjxZlRI1Ctzt0YTiQP7tGn0UytdDAgEesH
|
80
|
+
1VSVFUmUG0KSrphcMCbaAGvoe73siQcP9w4EmPCJzB/LMySHnfL0Zxws/HvniB3q506jocEjU8qN
|
81
|
+
+kXPCdBer9CwQgSi+aZsk2fXKNxGU7CG0OUoRi4nrIZPVVIM5AMs+2qQkDBuh/NZMJ36ftaXs+gh
|
82
|
+
l3740hPzCLdTbVK0RZCfSABKR2YRJylmqJfk0waBSqL5hKcRRxQJgp+E7VV4/gGaHVAIhQAQMEbt
|
83
|
+
t94jRrvELVSfrx54QTF3zJvfO4OToWECtR0Nsfz3m7IBziJLVP/5BcPCIAsCAwEAAaOCAaswggGn
|
84
|
+
MA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFCM0+NlSRnAK7UD7dvuzK7DDNbMPMAsGA1UdDwQE
|
85
|
+
AwIBhjAQBgkrBgEEAYI3FQEEAwIBADCBmAYDVR0jBIGQMIGNgBQOrIJgQFYnl+UlE/wq4QpTlVnk
|
86
|
+
pKFjpGEwXzETMBEGCgmSJomT8ixkARkWA2NvbTEZMBcGCgmSJomT8ixkARkWCW1pY3Jvc29mdDEt
|
87
|
+
MCsGA1UEAxMkTWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5ghB5rRahSqClrUxz
|
88
|
+
WPQHEy5lMFAGA1UdHwRJMEcwRaBDoEGGP2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3Js
|
89
|
+
L3Byb2R1Y3RzL21pY3Jvc29mdHJvb3RjZXJ0LmNybDBUBggrBgEFBQcBAQRIMEYwRAYIKwYBBQUH
|
90
|
+
MAKGOGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljcm9zb2Z0Um9vdENlcnQu
|
91
|
+
Y3J0MBMGA1UdJQQMMAoGCCsGAQUFBwMIMA0GCSqGSIb3DQEBBQUAA4ICAQAQl4rDXANENt3ptK13
|
92
|
+
2855UU0BsS50cVttDBOrzr57j7gu1BKijG1iuFcCy04gE1CZ3XpA4le7r1iaHOEdAYasu3jyi9Ds
|
93
|
+
OwHu4r6PCgXIjUji8FMV3U+rkuTnjWrVgMHmlPIGL4UD6ZEqJCJw+/b85HiZLg33B+JwvBhOnY5r
|
94
|
+
CnKVuKE5nGctxVEO6mJcPxaYiyA/4gcaMvnMMUp2MT0rcgvI6nA9/4UKE9/CCmGO8Ne4F+tOi3/F
|
95
|
+
NSteo7/rvH0LQnvUU3Ih7jDKu3hlXFsBFwoUDtLaFJj1PLlmWLMtL+f5hYbMUVbonXCUbKw5TNT2
|
96
|
+
eb+qGHpiKe+imyk0BncaYsk9Hm0fgvALxyy7z0Oz5fnsfbXjpKh0NbhOxXEjEiZ2CzxSjHFaRkMU
|
97
|
+
vLOzsE1nyJ9C/4B5IYCeFTBm6EISXhrIniIh0EPpK+m79EjMLNTYMoBMJipIJF9a6lbvpt6Znco6
|
98
|
+
b72BJ3QGEe52Ib+bgsEnVLaxaj2JoXZhtG6hE6a/qkfwEm/9ijJssv7fUciMI8lmvZ0dhxJkAj0t
|
99
|
+
r1mPuOQh5bWwymO0eFQF1EEuUKyUsKV4q7OglnUa2ZKHE3UiLzKoCG6gW4wlv6DvhMoh1useT8ma
|
100
|
+
7kng9wFlb4kLfchpyOZu6qeXzjEp/w7FW1zYTRuh2Povnj8uVRZryROj/TCCBMowggOyoAMCAQIC
|
101
|
+
CmEEs/UAAAAAAA0wDQYJKoZIhvcNAQEFBQAwdzELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp
|
102
|
+
bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEh
|
103
|
+
MB8GA1UEAxMYTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBMB4XDTA4MDcyNTE5MTM0NVoXDTExMDcy
|
104
|
+
NTE5MjM0NVowgbMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS
|
105
|
+
ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xDTALBgNVBAsTBE1PUFIxJzAl
|
106
|
+
BgNVBAsTHm5DaXBoZXIgRFNFIEVTTjo5RTc4LTg2NEItMDM5RDElMCMGA1UEAxMcTWljcm9zb2Z0
|
107
|
+
IFRpbWUtU3RhbXAgU2VydmljZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKtGL7yo
|
108
|
+
FPL4Rj8MBaGkY0UFf5rpM3LMJ9My7JjD4DSIhc6hEpeuSFBOSCB/cORZM/yZW7kHgEgovI24+mYC
|
109
|
+
ZrXxfxxQliiTVY2BVapwW6XJzu8u4uclw3ZvKQufLMhTgJrBDeO9p0W/Md/mhot9iQGLHHhYOLLd
|
110
|
+
k0pbnh3XnMbwxE3QvydKB5QEcQKIDXDm+CrnDmHjmEvR3atUtjf7xkb9pBy8/6/sspeA3LiT/bgi
|
111
|
+
qJ0lWXA+XHscQSn+c5kiSYHXVSbA7PJOKFRiO3AtYZMdUNWfAcIFw1UaSoekAIZUoHtisuoP+l1c
|
112
|
+
xSoRgpe+hhsdq7erCin8zM00ib9Atk8CAwEAAaOCARkwggEVMB0GA1UdDgQWBBSghTFeh64PqgoE
|
113
|
+
6+HA02S9PLtp9TAfBgNVHSMEGDAWgBQjNPjZUkZwCu1A+3b7syuwwzWzDzBUBgNVHR8ETTBLMEmg
|
114
|
+
R6BFhkNodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNyb3NvZnRU
|
115
|
+
aW1lU3RhbXBQQ0EuY3JsMFgGCCsGAQUFBwEBBEwwSjBIBggrBgEFBQcwAoY8aHR0cDovL3d3dy5t
|
116
|
+
aWNyb3NvZnQuY29tL3BraS9jZXJ0cy9NaWNyb3NvZnRUaW1lU3RhbXBQQ0EuY3J0MBMGA1UdJQQM
|
117
|
+
MAoGCCsGAQUFBwMIMA4GA1UdDwEB/wQEAwIGwDANBgkqhkiG9w0BAQUFAAOCAQEAR3FPtkhFwAjr
|
118
|
+
nC/TJVvbZ1ERkqbZ2bIUmibC/QbBzNeI9aY1tc0rtmtYas35nfNa60YvofqnH316QrKw0RoJKFRs
|
119
|
+
b5mLOPw65MEkqnJMEgQv8dR6djvFz3EnC238OGenxSJiK3t/wXasp8UmTKmvmN2KOF3PZaSBLqnv
|
120
|
+
VgJMuQi+ZcQeiyEtbqfydWS03Bpr0PEl5cLngEQ51C8KeX4BKqd4W6NrW84J7zk6ObfEZ1O5qvNh
|
121
|
+
/515489IZ/+ryMYrYgmU0B+iePdzSTtYU8EJq0wGC9VAKH72sWbFv1LEvj474PmOdI3mIgzBxjOY
|
122
|
+
tXnoDPcAfOqyTsyAmhYtyKQQBaGCA3kwggJhAgEBMIHjoYG5pIG2MIGzMQswCQYDVQQGEwJVUzET
|
123
|
+
MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0
|
124
|
+
IENvcnBvcmF0aW9uMQ0wCwYDVQQLEwRNT1BSMScwJQYDVQQLEx5uQ2lwaGVyIERTRSBFU046OUU3
|
125
|
+
OC04NjRCLTAzOUQxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiJQoBATAJ
|
126
|
+
BgUrDgMCGgUAAxUAfLAkTHzsUoPn79rfXMxYdy3Wf0KggcEwgb6kgbswgbgxCzAJBgNVBAYTAlVT
|
127
|
+
MRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv
|
128
|
+
ZnQgQ29ycG9yYXRpb24xDDAKBgNVBAsTA0FPQzEnMCUGA1UECxMebkNpcGhlciBOVFMgRVNOOjIy
|
129
|
+
QTEtMjA4RS04N0IwMSswKQYDVQQDEyJNaWNyb3NvZnQgVGltZSBTb3VyY2UgTWFzdGVyIENsb2Nr
|
130
|
+
MA0GCSqGSIb3DQEBBQUAAgUAz0xaYzAiGA8yMDEwMDMxODA3NTMwN1oYDzIwMTAwMzE5MDc1MzA3
|
131
|
+
WjB4MD4GCisGAQQBhFkKBAExMDAuMAoCBQDPTFpjAgEAMAoCAQACAgCtAgH/MAgCAQACAwMZ5DAK
|
132
|
+
AgUAz02r4wIBADA2BgorBgEEAYRZCgQCMSgwJjAMBgorBgEEAYRZCgMBoAowCAIBAAIDD0JAoQow
|
133
|
+
CAIBAAIDB6EgMA0GCSqGSIb3DQEBBQUAA4IBAQAfL/jNeBgdtutQt9I+oM3IHaqbp6YPhaK5vppn
|
134
|
+
jJyJZl4dXUi3cl11aVuQ1Hi+sXUJ9VC164tBGJblBkX9G6PpbE2HZexz1XKXqLrbCcfKneaRpwDg
|
135
|
+
TbHZ56Noi92RRK3yQ/CEpdV0znfKMctuJWxiy83cL/8IpHZ/cs0hA1DmjnYxHLiBRjOvSMJjM0yf
|
136
|
+
ie+JQbY20qVA2U0GIITJT6VStPdYyarCjPwYhOfYqf3KMnK+dW79B8xmDktm1BrcTcWx0dz1stK4
|
137
|
+
oDy5eQDzKzoapQL/h3gI3/97/A8fkaEhgTkHofMu3/zKkaVFWD+z94pbt0dh7PWhcg7aKZeTnqNB
|
138
|
+
MYICCjCCAgYCAQEwgYUwdzELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNV
|
139
|
+
BAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEhMB8GA1UEAxMYTWlj
|
140
|
+
cm9zb2Z0IFRpbWUtU3RhbXAgUENBAgphBLP1AAAAAAANMAcGBSsOAwIaoF0wGAYJKoZIhvcNAQkD
|
141
|
+
MQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTAwMzE4MTEzNzMzWjAjBgkqhkiG9w0BCQQx
|
142
|
+
FgQUHfpJ+aI9ODbDK/BctJe11VRVLoEwDQYJKoZIhvcNAQEFBQAEggEAAQXOCXQVVjYof5+hBgxU
|
143
|
+
+pRiou+cMZQzDKPbXuIRIcRCwCJpdEnsjI4BfirpuztnopxwH5SG1FGEZA5e+Hp9eCBSRuRAx3Ib
|
144
|
+
FoCN5z9HAZ1dsLH1zdChAxHu8V/clI9edd9n3FlDY/pX5SAX++vsRmahvABhR8f++BPqg2wYGxVR
|
145
|
+
XI9dX8bRkW1nnWpcPE7cviXmrbGtT6R8HqgTdGx952ydPM+dxSet0JpZhJ5G0gb4Ib/stpTZXqKB
|
146
|
+
G0PIVhQaXBmFSSdZ28FmQbZBXPX7H/IzMe0Q3cMCF4Sx4cciu5zQRLP7v1se4gub1vPGtHRRm9aK
|
147
|
+
X9LkBKVweOfBhVC+SQ==</as:Timestamp>
|
148
|
+
</Object></Signature></r:issuer></r:license>
|
149
149
|
</msrel:RelData> </KeyInfo>
|
150
150
|
</Signature></asmv1:assembly>
|
@@ -1,5 +1,5 @@
|
|
1
|
-
<TestRunner>
|
2
|
-
<FriendlyName>Machine.Specifications 0.5.3-8ffa53f</FriendlyName>
|
3
|
-
<AssemblyPath>Machine.Specifications.TDNetRunner.dll</AssemblyPath>
|
4
|
-
<TypeName>Machine.Specifications.TDNetRunner.SpecificationRunner</TypeName>
|
5
|
-
</TestRunner>
|
1
|
+
<TestRunner>
|
2
|
+
<FriendlyName>Machine.Specifications 0.5.3-8ffa53f</FriendlyName>
|
3
|
+
<AssemblyPath>Machine.Specifications.TDNetRunner.dll</AssemblyPath>
|
4
|
+
<TypeName>Machine.Specifications.TDNetRunner.SpecificationRunner</TypeName>
|
5
|
+
</TestRunner>
|
@@ -1,504 +1,504 @@
|
|
1
|
-
<?xml version="1.0"?>
|
2
|
-
<doc>
|
3
|
-
<assembly>
|
4
|
-
<name>CommandLine</name>
|
5
|
-
</assembly>
|
6
|
-
<members>
|
7
|
-
<member name="T:CommandLine.CommandLineParserException">
|
8
|
-
<summary>
|
9
|
-
This exception is thrown when a generic parsing error occurs.
|
10
|
-
</summary>
|
11
|
-
</member>
|
12
|
-
<member name="T:CommandLine.ValueListAttribute">
|
13
|
-
<summary>
|
14
|
-
Models a list of command line arguments that are not options.
|
15
|
-
Must be applied to a field compatible with an <see cref="T:System.Collections.Generic.IList`1"/> interface
|
16
|
-
of <see cref="T:System.String"/> instances.
|
17
|
-
</summary>
|
18
|
-
</member>
|
19
|
-
<member name="M:CommandLine.ValueListAttribute.#ctor(System.Type)">
|
20
|
-
<summary>
|
21
|
-
Initializes a new instance of the <see cref="T:CommandLine.ValueListAttribute"/> class.
|
22
|
-
</summary>
|
23
|
-
<param name="concreteType">A type that implements <see cref="T:System.Collections.Generic.IList`1"/>.</param>
|
24
|
-
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="concreteType"/> is null.</exception>
|
25
|
-
</member>
|
26
|
-
<member name="P:CommandLine.ValueListAttribute.MaximumElements">
|
27
|
-
<summary>
|
28
|
-
Gets or sets the maximum element allow for the list managed by <see cref="T:CommandLine.ValueListAttribute"/> type.
|
29
|
-
If lesser than 0, no upper bound is fixed.
|
30
|
-
If equal to 0, no elements are allowed.
|
31
|
-
</summary>
|
32
|
-
</member>
|
33
|
-
<member name="T:CommandLine.HelpOptionAttribute">
|
34
|
-
<summary>
|
35
|
-
Indicates the instance method that must be invoked when it becomes necessary show your help screen.
|
36
|
-
The method signature is an instance method with no parameters and <see cref="T:System.String"/>
|
37
|
-
return value.
|
38
|
-
</summary>
|
39
|
-
</member>
|
40
|
-
<member name="T:CommandLine.BaseOptionAttribute">
|
41
|
-
<summary>
|
42
|
-
Provides base properties for creating an attribute, used to define rules for command line parsing.
|
43
|
-
</summary>
|
44
|
-
</member>
|
45
|
-
<member name="P:CommandLine.BaseOptionAttribute.ShortName">
|
46
|
-
<summary>
|
47
|
-
Short name of this command line option. You can use only one character.
|
48
|
-
</summary>
|
49
|
-
</member>
|
50
|
-
<member name="P:CommandLine.BaseOptionAttribute.LongName">
|
51
|
-
<summary>
|
52
|
-
Long name of this command line option. This name is usually a single english word.
|
53
|
-
</summary>
|
54
|
-
</member>
|
55
|
-
<member name="P:CommandLine.BaseOptionAttribute.Required">
|
56
|
-
<summary>
|
57
|
-
True if this command line option is required.
|
58
|
-
</summary>
|
59
|
-
</member>
|
60
|
-
<member name="P:CommandLine.BaseOptionAttribute.HelpText">
|
61
|
-
<summary>
|
62
|
-
A short description of this command line option. Usually a sentence summary.
|
63
|
-
</summary>
|
64
|
-
</member>
|
65
|
-
<member name="M:CommandLine.HelpOptionAttribute.#ctor">
|
66
|
-
<summary>
|
67
|
-
Initializes a new instance of the <see cref="T:CommandLine.HelpOptionAttribute"/> class.
|
68
|
-
</summary>
|
69
|
-
</member>
|
70
|
-
<member name="M:CommandLine.HelpOptionAttribute.#ctor(System.String,System.String)">
|
71
|
-
<summary>
|
72
|
-
Initializes a new instance of the <see cref="T:CommandLine.HelpOptionAttribute"/> class.
|
73
|
-
Allows you to define short and long option names.
|
74
|
-
</summary>
|
75
|
-
<param name="shortName">The short name of the option or null if not used.</param>
|
76
|
-
<param name="longName">The long name of the option or null if not used.</param>
|
77
|
-
</member>
|
78
|
-
<member name="P:CommandLine.HelpOptionAttribute.Required">
|
79
|
-
<summary>
|
80
|
-
Returns always false for this kind of option.
|
81
|
-
This behaviour can't be changed by design; if you try set <see cref="P:CommandLine.HelpOptionAttribute.Required"/>
|
82
|
-
an <see cref="T:System.InvalidOperationException"/> will be thrown.
|
83
|
-
</summary>
|
84
|
-
</member>
|
85
|
-
<member name="T:CommandLine.OptionAttribute">
|
86
|
-
<summary>
|
87
|
-
Models an option specification.
|
88
|
-
</summary>
|
89
|
-
</member>
|
90
|
-
<member name="M:CommandLine.OptionAttribute.#ctor(System.String,System.String)">
|
91
|
-
<summary>
|
92
|
-
Initializes a new instance of the <see cref="T:CommandLine.OptionAttribute"/> class.
|
93
|
-
</summary>
|
94
|
-
<param name="shortName">The short name of the option or null if not used.</param>
|
95
|
-
<param name="longName">The long name of the option or null if not used.</param>
|
96
|
-
</member>
|
97
|
-
<member name="P:CommandLine.OptionAttribute.MutuallyExclusiveSet">
|
98
|
-
<summary>
|
99
|
-
Gets or sets the option's mutually exclusive set.
|
100
|
-
</summary>
|
101
|
-
</member>
|
102
|
-
<member name="T:CommandLine.OptionListAttribute">
|
103
|
-
<summary>
|
104
|
-
Models an option that can accept multiple values.
|
105
|
-
Must be applied to a field compatible with an <see cref="T:System.Collections.Generic.IList`1"/> interface
|
106
|
-
of <see cref="T:System.String"/> instances.
|
107
|
-
</summary>
|
108
|
-
</member>
|
109
|
-
<member name="M:CommandLine.OptionListAttribute.#ctor(System.String,System.String)">
|
110
|
-
<summary>
|
111
|
-
Initializes a new instance of the <see cref="T:CommandLine.OptionListAttribute"/> class.
|
112
|
-
</summary>
|
113
|
-
<param name="shortName">The short name of the option or null if not used.</param>
|
114
|
-
<param name="longName">The long name of the option or null if not used.</param>
|
115
|
-
</member>
|
116
|
-
<member name="M:CommandLine.OptionListAttribute.#ctor(System.String,System.String,System.Char)">
|
117
|
-
<summary>
|
118
|
-
Initializes a new instance of the <see cref="T:CommandLine.OptionListAttribute"/> class.
|
119
|
-
</summary>
|
120
|
-
<param name="shortName">The short name of the option or null if not used.</param>
|
121
|
-
<param name="longName">The long name of the option or null if not used.</param>
|
122
|
-
<param name="separator">Values separator character.</param>
|
123
|
-
</member>
|
124
|
-
<member name="P:CommandLine.OptionListAttribute.Separator">
|
125
|
-
<summary>
|
126
|
-
Gets or sets the values separator character.
|
127
|
-
</summary>
|
128
|
-
</member>
|
129
|
-
<member name="T:CommandLine.Text.CopyrightInfo">
|
130
|
-
<summary>
|
131
|
-
Models the copyright informations part of an help text.
|
132
|
-
You can assign it where you assign any <see cref="T:System.String"/> instance.
|
133
|
-
</summary>
|
134
|
-
</member>
|
135
|
-
<member name="M:CommandLine.Text.CopyrightInfo.#ctor">
|
136
|
-
<summary>
|
137
|
-
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class.
|
138
|
-
</summary>
|
139
|
-
</member>
|
140
|
-
<member name="M:CommandLine.Text.CopyrightInfo.#ctor(System.String,System.Int32)">
|
141
|
-
<summary>
|
142
|
-
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class
|
143
|
-
specifying author and year.
|
144
|
-
</summary>
|
145
|
-
<param name="author">The company or person holding the copyright.</param>
|
146
|
-
<param name="year">The year of coverage of copyright.</param>
|
147
|
-
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="author"/> is null or empty string.</exception>
|
148
|
-
</member>
|
149
|
-
<member name="M:CommandLine.Text.CopyrightInfo.#ctor(System.String,System.Int32[])">
|
150
|
-
<summary>
|
151
|
-
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class
|
152
|
-
specifying author and years.
|
153
|
-
</summary>
|
154
|
-
<param name="author">The company or person holding the copyright.</param>
|
155
|
-
<param name="years">The years of coverage of copyright.</param>
|
156
|
-
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="author"/> is null or empty string.</exception>
|
157
|
-
<exception cref="T:System.ArgumentOutOfRangeException">Thrown when parameter <paramref name="years"/> is not supplied.</exception>
|
158
|
-
</member>
|
159
|
-
<member name="M:CommandLine.Text.CopyrightInfo.#ctor(System.Boolean,System.String,System.Int32[])">
|
160
|
-
<summary>
|
161
|
-
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class
|
162
|
-
specifying symbol case, author and years.
|
163
|
-
</summary>
|
164
|
-
<param name="isSymbolUpper">The case of the copyright symbol.</param>
|
165
|
-
<param name="author">The company or person holding the copyright.</param>
|
166
|
-
<param name="years">The years of coverage of copyright.</param>
|
167
|
-
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="author"/> is null or empty string.</exception>
|
168
|
-
<exception cref="T:System.ArgumentOutOfRangeException">Thrown when parameter <paramref name="years"/> is not supplied.</exception>
|
169
|
-
</member>
|
170
|
-
<member name="M:CommandLine.Text.CopyrightInfo.ToString">
|
171
|
-
<summary>
|
172
|
-
Returns the copyright informations as a <see cref="T:System.String"/>.
|
173
|
-
</summary>
|
174
|
-
<returns>The <see cref="T:System.String"/> that contains the copyright informations.</returns>
|
175
|
-
</member>
|
176
|
-
<member name="M:CommandLine.Text.CopyrightInfo.op_Implicit(CommandLine.Text.CopyrightInfo)~System.String">
|
177
|
-
<summary>
|
178
|
-
Converts the copyright informations to a <see cref="T:System.String"/>.
|
179
|
-
</summary>
|
180
|
-
<param name="info">This <see cref="T:CommandLine.Text.CopyrightInfo"/> instance.</param>
|
181
|
-
<returns>The <see cref="T:System.String"/> that contains the copyright informations.</returns>
|
182
|
-
</member>
|
183
|
-
<member name="M:CommandLine.Text.CopyrightInfo.FormatYears(System.Int32[])">
|
184
|
-
<summary>
|
185
|
-
When overridden in a derived class, allows to specify a new algorithm to render copyright years
|
186
|
-
as a <see cref="T:System.String"/> instance.
|
187
|
-
</summary>
|
188
|
-
<param name="years">A <see cref="T:System.Int32"/> array of years.</param>
|
189
|
-
<returns>A <see cref="T:System.String"/> instance with copyright years.</returns>
|
190
|
-
</member>
|
191
|
-
<member name="P:CommandLine.Text.CopyrightInfo.CopyrightWord">
|
192
|
-
<summary>
|
193
|
-
When overridden in a derived class, allows to specify a different copyright word.
|
194
|
-
</summary>
|
195
|
-
</member>
|
196
|
-
<member name="T:CommandLine.ICommandLineParser">
|
197
|
-
<summary>
|
198
|
-
Defines a basic interface to parse command line arguments.
|
199
|
-
</summary>
|
200
|
-
</member>
|
201
|
-
<member name="M:CommandLine.ICommandLineParser.ParseArguments(System.String[],System.Object)">
|
202
|
-
<summary>
|
203
|
-
Parses a <see cref="T:System.String"/> array of command line arguments, setting values in <paramref name="options"/>
|
204
|
-
parameter instance's public fields decorated with appropriate attributes.
|
205
|
-
</summary>
|
206
|
-
<param name="args">A <see cref="T:System.String"/> array of command line arguments.</param>
|
207
|
-
<param name="options">An object's instance used to receive values.
|
208
|
-
Parsing rules are defined using <see cref="T:CommandLine.BaseOptionAttribute"/> derived types.</param>
|
209
|
-
<returns>True if parsing process succeed.</returns>
|
210
|
-
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="args"/> is null.</exception>
|
211
|
-
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="options"/> is null.</exception>
|
212
|
-
</member>
|
213
|
-
<member name="M:CommandLine.ICommandLineParser.ParseArguments(System.String[],System.Object,System.IO.TextWriter)">
|
214
|
-
<summary>
|
215
|
-
Parses a <see cref="T:System.String"/> array of command line arguments, setting values in <paramref name="options"/>
|
216
|
-
parameter instance's public fields decorated with appropriate attributes.
|
217
|
-
This overload allows you to specify a <see cref="T:System.IO.TextWriter"/> derived instance for write text messages.
|
218
|
-
</summary>
|
219
|
-
<param name="args">A <see cref="T:System.String"/> array of command line arguments.</param>
|
220
|
-
<param name="options">An object's instance used to receive values.
|
221
|
-
Parsing rules are defined using <see cref="T:CommandLine.BaseOptionAttribute"/> derived types.</param>
|
222
|
-
<param name="helpWriter">Any instance derived from <see cref="T:System.IO.TextWriter"/>,
|
223
|
-
usually <see cref="P:System.Console.Error"/>. Setting this argument to null, will disable help screen.</param>
|
224
|
-
<returns>True if parsing process succeed.</returns>
|
225
|
-
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="args"/> is null.</exception>
|
226
|
-
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="options"/> is null.</exception>
|
227
|
-
</member>
|
228
|
-
<member name="T:CommandLine.CommandLineParser">
|
229
|
-
<summary>
|
230
|
-
Provides methods to parse command line arguments.
|
231
|
-
Default implementation for <see cref="T:CommandLine.ICommandLineParser"/>.
|
232
|
-
</summary>
|
233
|
-
</member>
|
234
|
-
<member name="M:CommandLine.CommandLineParser.#ctor">
|
235
|
-
<summary>
|
236
|
-
Initializes a new instance of the <see cref="T:CommandLine.CommandLineParser"/> class.
|
237
|
-
</summary>
|
238
|
-
</member>
|
239
|
-
<member name="M:CommandLine.CommandLineParser.#ctor(CommandLine.CommandLineParserSettings)">
|
240
|
-
<summary>
|
241
|
-
Initializes a new instance of the <see cref="T:CommandLine.CommandLineParser"/> class,
|
242
|
-
configurable with a <see cref="T:CommandLine.CommandLineParserSettings"/> object.
|
243
|
-
</summary>
|
244
|
-
<param name="settings">The <see cref="T:CommandLine.CommandLineParserSettings"/> object is used to configure
|
245
|
-
aspects and behaviors of the parser.</param>
|
246
|
-
</member>
|
247
|
-
<member name="M:CommandLine.CommandLineParser.ParseArguments(System.String[],System.Object)">
|
248
|
-
<summary>
|
249
|
-
Parses a <see cref="T:System.String"/> array of command line arguments, setting values in <paramref name="options"/>
|
250
|
-
parameter instance's public fields decorated with appropriate attributes.
|
251
|
-
</summary>
|
252
|
-
<param name="args">A <see cref="T:System.String"/> array of command line arguments.</param>
|
253
|
-
<param name="options">An object's instance used to receive values.
|
254
|
-
Parsing rules are defined using <see cref="T:CommandLine.BaseOptionAttribute"/> derived types.</param>
|
255
|
-
<returns>True if parsing process succeed.</returns>
|
256
|
-
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="args"/> is null.</exception>
|
257
|
-
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="options"/> is null.</exception>
|
258
|
-
</member>
|
259
|
-
<member name="M:CommandLine.CommandLineParser.ParseArguments(System.String[],System.Object,System.IO.TextWriter)">
|
260
|
-
<summary>
|
261
|
-
Parses a <see cref="T:System.String"/> array of command line arguments, setting values in <paramref name="options"/>
|
262
|
-
parameter instance's public fields decorated with appropriate attributes.
|
263
|
-
This overload allows you to specify a <see cref="T:System.IO.TextWriter"/> derived instance for write text messages.
|
264
|
-
</summary>
|
265
|
-
<param name="args">A <see cref="T:System.String"/> array of command line arguments.</param>
|
266
|
-
<param name="options">An object's instance used to receive values.
|
267
|
-
Parsing rules are defined using <see cref="T:CommandLine.BaseOptionAttribute"/> derived types.</param>
|
268
|
-
<param name="helpWriter">Any instance derived from <see cref="T:System.IO.TextWriter"/>,
|
269
|
-
usually <see cref="P:System.Console.Error"/>. Setting this argument to null, will disable help screen.</param>
|
270
|
-
<returns>True if parsing process succeed.</returns>
|
271
|
-
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="args"/> is null.</exception>
|
272
|
-
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="options"/> is null.</exception>
|
273
|
-
</member>
|
274
|
-
<member name="T:CommandLine.Text.HelpText">
|
275
|
-
<summary>
|
276
|
-
Models an help text and collects related informations.
|
277
|
-
You can assign it in place of a <see cref="T:System.String"/> instance.
|
278
|
-
</summary>
|
279
|
-
</member>
|
280
|
-
<member name="M:CommandLine.Text.HelpText.#ctor(System.String)">
|
281
|
-
<summary>
|
282
|
-
Initializes a new instance of the <see cref="T:CommandLine.Text.HelpText"/> class
|
283
|
-
specifying heading informations.
|
284
|
-
</summary>
|
285
|
-
<param name="heading">A string with heading information or
|
286
|
-
an instance of <see cref="T:CommandLine.Text.HeadingInfo"/>.</param>
|
287
|
-
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="heading"/> is null or empty string.</exception>
|
288
|
-
</member>
|
289
|
-
<member name="M:CommandLine.Text.HelpText.AddPreOptionsLine(System.String)">
|
290
|
-
<summary>
|
291
|
-
Adds a text line after copyright and before options usage informations.
|
292
|
-
</summary>
|
293
|
-
<param name="value">A <see cref="T:System.String"/> instance.</param>
|
294
|
-
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="value"/> is null or empty string.</exception>
|
295
|
-
</member>
|
296
|
-
<member name="M:CommandLine.Text.HelpText.AddPostOptionsLine(System.String)">
|
297
|
-
<summary>
|
298
|
-
Adds a text line at the bottom, after options usage informations.
|
299
|
-
</summary>
|
300
|
-
<param name="value">A <see cref="T:System.String"/> instance.</param>
|
301
|
-
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="value"/> is null or empty string.</exception>
|
302
|
-
</member>
|
303
|
-
<member name="M:CommandLine.Text.HelpText.AddOptions(System.Object)">
|
304
|
-
<summary>
|
305
|
-
Adds a text block with options usage informations.
|
306
|
-
</summary>
|
307
|
-
<param name="options">The instance that collected command line arguments parsed with <see cref="!:CommandLine.Parser"/> class.</param>
|
308
|
-
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="options"/> is null.</exception>
|
309
|
-
</member>
|
310
|
-
<member name="M:CommandLine.Text.HelpText.AddOptions(System.Object,System.String)">
|
311
|
-
<summary>
|
312
|
-
Adds a text block with options usage informations.
|
313
|
-
</summary>
|
314
|
-
<param name="options">The instance that collected command line arguments parsed with the <see cref="!:CommandLine.Parser"/> class.</param>
|
315
|
-
<param name="requiredWord">The word to use when the option is required.</param>
|
316
|
-
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="options"/> is null.</exception>
|
317
|
-
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="requiredWord"/> is null or empty string.</exception>
|
318
|
-
</member>
|
319
|
-
<member name="M:CommandLine.Text.HelpText.AddOptions(System.Object,System.String,System.Int32)">
|
320
|
-
<summary>
|
321
|
-
Adds a text block with options usage informations.
|
322
|
-
</summary>
|
323
|
-
<param name="options">The instance that collected command line arguments parsed with the <see cref="!:CommandLine.Parser"/> class.</param>
|
324
|
-
<param name="requiredWord">The word to use when the option is required.</param>
|
325
|
-
<param name="maximumLength">The maximum length of the help documentation.</param>
|
326
|
-
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="options"/> is null.</exception>
|
327
|
-
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="requiredWord"/> is null or empty string.</exception>
|
328
|
-
</member>
|
329
|
-
<member name="M:CommandLine.Text.HelpText.ToString">
|
330
|
-
<summary>
|
331
|
-
Returns the help informations as a <see cref="T:System.String"/>.
|
332
|
-
</summary>
|
333
|
-
<returns>The <see cref="T:System.String"/> that contains the help informations.</returns>
|
334
|
-
</member>
|
335
|
-
<member name="M:CommandLine.Text.HelpText.op_Implicit(CommandLine.Text.HelpText)~System.String">
|
336
|
-
<summary>
|
337
|
-
Converts the help informations to a <see cref="T:System.String"/>.
|
338
|
-
</summary>
|
339
|
-
<param name="info">This <see cref="T:CommandLine.Text.HelpText"/> instance.</param>
|
340
|
-
<returns>The <see cref="T:System.String"/> that contains the help informations.</returns>
|
341
|
-
</member>
|
342
|
-
<member name="P:CommandLine.Text.HelpText.Copyright">
|
343
|
-
<summary>
|
344
|
-
Sets the copyright information string.
|
345
|
-
You can directly assign a <see cref="T:CommandLine.Text.CopyrightInfo"/> instance.
|
346
|
-
</summary>
|
347
|
-
</member>
|
348
|
-
<member name="P:CommandLine.Text.HelpText.MaximumDisplayWidth">
|
349
|
-
<summary>
|
350
|
-
Gets or sets the maximum width of the display. This determines word wrap when displaying the text.
|
351
|
-
</summary>
|
352
|
-
<value>The maximum width of the display.</value>
|
353
|
-
</member>
|
354
|
-
<member name="P:CommandLine.Text.HelpText.AdditionalNewLineAfterOption">
|
355
|
-
<summary>
|
356
|
-
Gets or sets whether to add an additional line after the description of the option.
|
357
|
-
</summary>
|
358
|
-
</member>
|
359
|
-
<member name="T:CommandLine.Text.HeadingInfo">
|
360
|
-
<summary>
|
361
|
-
Models the heading informations part of an help text.
|
362
|
-
You can assign it where you assign any <see cref="T:System.String"/> instance.
|
363
|
-
</summary>
|
364
|
-
</member>
|
365
|
-
<member name="M:CommandLine.Text.HeadingInfo.#ctor(System.String)">
|
366
|
-
<summary>
|
367
|
-
Initializes a new instance of the <see cref="T:CommandLine.Text.HeadingInfo"/> class
|
368
|
-
specifying program name.
|
369
|
-
</summary>
|
370
|
-
<param name="programName">The name of the program.</param>
|
371
|
-
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="programName"/> is null or empty string.</exception>
|
372
|
-
</member>
|
373
|
-
<member name="M:CommandLine.Text.HeadingInfo.#ctor(System.String,System.String)">
|
374
|
-
<summary>
|
375
|
-
Initializes a new instance of the <see cref="T:CommandLine.Text.HeadingInfo"/> class
|
376
|
-
specifying program name and version.
|
377
|
-
</summary>
|
378
|
-
<param name="programName">The name of the program.</param>
|
379
|
-
<param name="version">The version of the program.</param>
|
380
|
-
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="programName"/> is null or empty string.</exception>
|
381
|
-
</member>
|
382
|
-
<member name="M:CommandLine.Text.HeadingInfo.ToString">
|
383
|
-
<summary>
|
384
|
-
Returns the heading informations as a <see cref="T:System.String"/>.
|
385
|
-
</summary>
|
386
|
-
<returns>The <see cref="T:System.String"/> that contains the heading informations.</returns>
|
387
|
-
</member>
|
388
|
-
<member name="M:CommandLine.Text.HeadingInfo.op_Implicit(CommandLine.Text.HeadingInfo)~System.String">
|
389
|
-
<summary>
|
390
|
-
Converts the heading informations to a <see cref="T:System.String"/>.
|
391
|
-
</summary>
|
392
|
-
<param name="info">This <see cref="T:CommandLine.Text.HeadingInfo"/> instance.</param>
|
393
|
-
<returns>The <see cref="T:System.String"/> that contains the heading informations.</returns>
|
394
|
-
</member>
|
395
|
-
<member name="M:CommandLine.Text.HeadingInfo.WriteMessage(System.String,System.IO.TextWriter)">
|
396
|
-
<summary>
|
397
|
-
Writes out a string and a new line using the program name specified in the constructor
|
398
|
-
and <paramref name="message"/> parameter.
|
399
|
-
</summary>
|
400
|
-
<param name="message">The <see cref="T:System.String"/> message to write.</param>
|
401
|
-
<param name="writer">The target <see cref="T:System.IO.TextWriter"/> derived type.</param>
|
402
|
-
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="message"/> is null or empty string.</exception>
|
403
|
-
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="writer"/> is null.</exception>
|
404
|
-
</member>
|
405
|
-
<member name="M:CommandLine.Text.HeadingInfo.WriteMessage(System.String)">
|
406
|
-
<summary>
|
407
|
-
Writes out a string and a new line using the program name specified in the constructor
|
408
|
-
and <paramref name="message"/> parameter to standard output stream.
|
409
|
-
</summary>
|
410
|
-
<param name="message">The <see cref="T:System.String"/> message to write.</param>
|
411
|
-
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="message"/> is null or empty string.</exception>
|
412
|
-
</member>
|
413
|
-
<member name="M:CommandLine.Text.HeadingInfo.WriteError(System.String)">
|
414
|
-
<summary>
|
415
|
-
Writes out a string and a new line using the program name specified in the constructor
|
416
|
-
and <paramref name="message"/> parameter to standard error stream.
|
417
|
-
</summary>
|
418
|
-
<param name="message">The <see cref="T:System.String"/> message to write.</param>
|
419
|
-
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="message"/> is null or empty string.</exception>
|
420
|
-
</member>
|
421
|
-
<member name="T:CommandLine.OptionArrayAttribute">
|
422
|
-
<summary>
|
423
|
-
Models an option that can accept multiple values as separated arguments.
|
424
|
-
</summary>
|
425
|
-
</member>
|
426
|
-
<member name="M:CommandLine.OptionArrayAttribute.#ctor(System.String,System.String)">
|
427
|
-
<summary>
|
428
|
-
Initializes a new instance of the <see cref="T:CommandLine.OptionArrayAttribute"/> class.
|
429
|
-
</summary>
|
430
|
-
<param name="shortName">The short name of the option or null if not used.</param>
|
431
|
-
<param name="longName">The long name of the option or null if not used.</param>
|
432
|
-
</member>
|
433
|
-
<member name="T:CommandLine.CommandLineParserSettings">
|
434
|
-
<summary>
|
435
|
-
Specifies a set of features to configure a <see cref="T:CommandLine.CommandLineParser"/> behavior.
|
436
|
-
</summary>
|
437
|
-
</member>
|
438
|
-
<member name="M:CommandLine.CommandLineParserSettings.#ctor">
|
439
|
-
<summary>
|
440
|
-
Initializes a new instance of the <see cref="T:CommandLine.CommandLineParserSettings"/> class.
|
441
|
-
</summary>
|
442
|
-
</member>
|
443
|
-
<member name="M:CommandLine.CommandLineParserSettings.#ctor(System.Boolean)">
|
444
|
-
<summary>
|
445
|
-
Initializes a new instance of the <see cref="T:CommandLine.CommandLineParserSettings"/> class,
|
446
|
-
setting the case comparison behavior.
|
447
|
-
</summary>
|
448
|
-
<param name="caseSensitive">If set to true, parsing will be case sensitive.</param>
|
449
|
-
</member>
|
450
|
-
<member name="M:CommandLine.CommandLineParserSettings.#ctor(System.IO.TextWriter)">
|
451
|
-
<summary>
|
452
|
-
Initializes a new instance of the <see cref="T:CommandLine.CommandLineParserSettings"/> class,
|
453
|
-
setting the <see cref="T:System.IO.TextWriter"/> used for help method output.
|
454
|
-
</summary>
|
455
|
-
<param name="helpWriter">Any instance derived from <see cref="T:System.IO.TextWriter"/>,
|
456
|
-
default <see cref="P:System.Console.Error"/>. Setting this argument to null, will disable help screen.</param>
|
457
|
-
</member>
|
458
|
-
<member name="M:CommandLine.CommandLineParserSettings.#ctor(System.Boolean,System.IO.TextWriter)">
|
459
|
-
<summary>
|
460
|
-
Initializes a new instance of the <see cref="T:CommandLine.CommandLineParserSettings"/> class,
|
461
|
-
setting case comparison and help output options.
|
462
|
-
</summary>
|
463
|
-
<param name="caseSensitive">If set to true, parsing will be case sensitive.</param>
|
464
|
-
<param name="helpWriter">Any instance derived from <see cref="T:System.IO.TextWriter"/>,
|
465
|
-
default <see cref="P:System.Console.Error"/>. Setting this argument to null, will disable help screen.</param>
|
466
|
-
</member>
|
467
|
-
<member name="M:CommandLine.CommandLineParserSettings.#ctor(System.Boolean,System.Boolean)">
|
468
|
-
<summary>
|
469
|
-
Initializes a new instance of the <see cref="T:CommandLine.CommandLineParserSettings"/> class,
|
470
|
-
setting case comparison and mutually exclusive behaviors.
|
471
|
-
</summary>
|
472
|
-
<param name="caseSensitive">If set to true, parsing will be case sensitive.</param>
|
473
|
-
<param name="mutuallyExclusive">If set to true, enable mutually exclusive behavior.</param>
|
474
|
-
</member>
|
475
|
-
<member name="M:CommandLine.CommandLineParserSettings.#ctor(System.Boolean,System.Boolean,System.IO.TextWriter)">
|
476
|
-
<summary>
|
477
|
-
Initializes a new instance of the <see cref="T:CommandLine.CommandLineParserSettings"/> class,
|
478
|
-
setting case comparison, mutually exclusive behavior and help output option.
|
479
|
-
</summary>
|
480
|
-
<param name="caseSensitive">If set to true, parsing will be case sensitive.</param>
|
481
|
-
<param name="mutuallyExclusive">If set to true, enable mutually exclusive behavior.</param>
|
482
|
-
<param name="helpWriter">Any instance derived from <see cref="T:System.IO.TextWriter"/>,
|
483
|
-
default <see cref="P:System.Console.Error"/>. Setting this argument to null, will disable help screen.</param>
|
484
|
-
</member>
|
485
|
-
<member name="P:CommandLine.CommandLineParserSettings.CaseSensitive">
|
486
|
-
<summary>
|
487
|
-
Gets or sets the case comparison behavior.
|
488
|
-
Default is set to true.
|
489
|
-
</summary>
|
490
|
-
</member>
|
491
|
-
<member name="P:CommandLine.CommandLineParserSettings.MutuallyExclusive">
|
492
|
-
<summary>
|
493
|
-
Gets or sets the mutually exclusive behavior.
|
494
|
-
Default is set to false.
|
495
|
-
</summary>
|
496
|
-
</member>
|
497
|
-
<member name="P:CommandLine.CommandLineParserSettings.HelpWriter">
|
498
|
-
<summary>
|
499
|
-
Gets or sets the <see cref="T:System.IO.TextWriter"/> used for help method output.
|
500
|
-
Setting this property to null, will disable help screen.
|
501
|
-
</summary>
|
502
|
-
</member>
|
503
|
-
</members>
|
504
|
-
</doc>
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<doc>
|
3
|
+
<assembly>
|
4
|
+
<name>CommandLine</name>
|
5
|
+
</assembly>
|
6
|
+
<members>
|
7
|
+
<member name="T:CommandLine.CommandLineParserException">
|
8
|
+
<summary>
|
9
|
+
This exception is thrown when a generic parsing error occurs.
|
10
|
+
</summary>
|
11
|
+
</member>
|
12
|
+
<member name="T:CommandLine.ValueListAttribute">
|
13
|
+
<summary>
|
14
|
+
Models a list of command line arguments that are not options.
|
15
|
+
Must be applied to a field compatible with an <see cref="T:System.Collections.Generic.IList`1"/> interface
|
16
|
+
of <see cref="T:System.String"/> instances.
|
17
|
+
</summary>
|
18
|
+
</member>
|
19
|
+
<member name="M:CommandLine.ValueListAttribute.#ctor(System.Type)">
|
20
|
+
<summary>
|
21
|
+
Initializes a new instance of the <see cref="T:CommandLine.ValueListAttribute"/> class.
|
22
|
+
</summary>
|
23
|
+
<param name="concreteType">A type that implements <see cref="T:System.Collections.Generic.IList`1"/>.</param>
|
24
|
+
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="concreteType"/> is null.</exception>
|
25
|
+
</member>
|
26
|
+
<member name="P:CommandLine.ValueListAttribute.MaximumElements">
|
27
|
+
<summary>
|
28
|
+
Gets or sets the maximum element allow for the list managed by <see cref="T:CommandLine.ValueListAttribute"/> type.
|
29
|
+
If lesser than 0, no upper bound is fixed.
|
30
|
+
If equal to 0, no elements are allowed.
|
31
|
+
</summary>
|
32
|
+
</member>
|
33
|
+
<member name="T:CommandLine.HelpOptionAttribute">
|
34
|
+
<summary>
|
35
|
+
Indicates the instance method that must be invoked when it becomes necessary show your help screen.
|
36
|
+
The method signature is an instance method with no parameters and <see cref="T:System.String"/>
|
37
|
+
return value.
|
38
|
+
</summary>
|
39
|
+
</member>
|
40
|
+
<member name="T:CommandLine.BaseOptionAttribute">
|
41
|
+
<summary>
|
42
|
+
Provides base properties for creating an attribute, used to define rules for command line parsing.
|
43
|
+
</summary>
|
44
|
+
</member>
|
45
|
+
<member name="P:CommandLine.BaseOptionAttribute.ShortName">
|
46
|
+
<summary>
|
47
|
+
Short name of this command line option. You can use only one character.
|
48
|
+
</summary>
|
49
|
+
</member>
|
50
|
+
<member name="P:CommandLine.BaseOptionAttribute.LongName">
|
51
|
+
<summary>
|
52
|
+
Long name of this command line option. This name is usually a single english word.
|
53
|
+
</summary>
|
54
|
+
</member>
|
55
|
+
<member name="P:CommandLine.BaseOptionAttribute.Required">
|
56
|
+
<summary>
|
57
|
+
True if this command line option is required.
|
58
|
+
</summary>
|
59
|
+
</member>
|
60
|
+
<member name="P:CommandLine.BaseOptionAttribute.HelpText">
|
61
|
+
<summary>
|
62
|
+
A short description of this command line option. Usually a sentence summary.
|
63
|
+
</summary>
|
64
|
+
</member>
|
65
|
+
<member name="M:CommandLine.HelpOptionAttribute.#ctor">
|
66
|
+
<summary>
|
67
|
+
Initializes a new instance of the <see cref="T:CommandLine.HelpOptionAttribute"/> class.
|
68
|
+
</summary>
|
69
|
+
</member>
|
70
|
+
<member name="M:CommandLine.HelpOptionAttribute.#ctor(System.String,System.String)">
|
71
|
+
<summary>
|
72
|
+
Initializes a new instance of the <see cref="T:CommandLine.HelpOptionAttribute"/> class.
|
73
|
+
Allows you to define short and long option names.
|
74
|
+
</summary>
|
75
|
+
<param name="shortName">The short name of the option or null if not used.</param>
|
76
|
+
<param name="longName">The long name of the option or null if not used.</param>
|
77
|
+
</member>
|
78
|
+
<member name="P:CommandLine.HelpOptionAttribute.Required">
|
79
|
+
<summary>
|
80
|
+
Returns always false for this kind of option.
|
81
|
+
This behaviour can't be changed by design; if you try set <see cref="P:CommandLine.HelpOptionAttribute.Required"/>
|
82
|
+
an <see cref="T:System.InvalidOperationException"/> will be thrown.
|
83
|
+
</summary>
|
84
|
+
</member>
|
85
|
+
<member name="T:CommandLine.OptionAttribute">
|
86
|
+
<summary>
|
87
|
+
Models an option specification.
|
88
|
+
</summary>
|
89
|
+
</member>
|
90
|
+
<member name="M:CommandLine.OptionAttribute.#ctor(System.String,System.String)">
|
91
|
+
<summary>
|
92
|
+
Initializes a new instance of the <see cref="T:CommandLine.OptionAttribute"/> class.
|
93
|
+
</summary>
|
94
|
+
<param name="shortName">The short name of the option or null if not used.</param>
|
95
|
+
<param name="longName">The long name of the option or null if not used.</param>
|
96
|
+
</member>
|
97
|
+
<member name="P:CommandLine.OptionAttribute.MutuallyExclusiveSet">
|
98
|
+
<summary>
|
99
|
+
Gets or sets the option's mutually exclusive set.
|
100
|
+
</summary>
|
101
|
+
</member>
|
102
|
+
<member name="T:CommandLine.OptionListAttribute">
|
103
|
+
<summary>
|
104
|
+
Models an option that can accept multiple values.
|
105
|
+
Must be applied to a field compatible with an <see cref="T:System.Collections.Generic.IList`1"/> interface
|
106
|
+
of <see cref="T:System.String"/> instances.
|
107
|
+
</summary>
|
108
|
+
</member>
|
109
|
+
<member name="M:CommandLine.OptionListAttribute.#ctor(System.String,System.String)">
|
110
|
+
<summary>
|
111
|
+
Initializes a new instance of the <see cref="T:CommandLine.OptionListAttribute"/> class.
|
112
|
+
</summary>
|
113
|
+
<param name="shortName">The short name of the option or null if not used.</param>
|
114
|
+
<param name="longName">The long name of the option or null if not used.</param>
|
115
|
+
</member>
|
116
|
+
<member name="M:CommandLine.OptionListAttribute.#ctor(System.String,System.String,System.Char)">
|
117
|
+
<summary>
|
118
|
+
Initializes a new instance of the <see cref="T:CommandLine.OptionListAttribute"/> class.
|
119
|
+
</summary>
|
120
|
+
<param name="shortName">The short name of the option or null if not used.</param>
|
121
|
+
<param name="longName">The long name of the option or null if not used.</param>
|
122
|
+
<param name="separator">Values separator character.</param>
|
123
|
+
</member>
|
124
|
+
<member name="P:CommandLine.OptionListAttribute.Separator">
|
125
|
+
<summary>
|
126
|
+
Gets or sets the values separator character.
|
127
|
+
</summary>
|
128
|
+
</member>
|
129
|
+
<member name="T:CommandLine.Text.CopyrightInfo">
|
130
|
+
<summary>
|
131
|
+
Models the copyright informations part of an help text.
|
132
|
+
You can assign it where you assign any <see cref="T:System.String"/> instance.
|
133
|
+
</summary>
|
134
|
+
</member>
|
135
|
+
<member name="M:CommandLine.Text.CopyrightInfo.#ctor">
|
136
|
+
<summary>
|
137
|
+
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class.
|
138
|
+
</summary>
|
139
|
+
</member>
|
140
|
+
<member name="M:CommandLine.Text.CopyrightInfo.#ctor(System.String,System.Int32)">
|
141
|
+
<summary>
|
142
|
+
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class
|
143
|
+
specifying author and year.
|
144
|
+
</summary>
|
145
|
+
<param name="author">The company or person holding the copyright.</param>
|
146
|
+
<param name="year">The year of coverage of copyright.</param>
|
147
|
+
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="author"/> is null or empty string.</exception>
|
148
|
+
</member>
|
149
|
+
<member name="M:CommandLine.Text.CopyrightInfo.#ctor(System.String,System.Int32[])">
|
150
|
+
<summary>
|
151
|
+
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class
|
152
|
+
specifying author and years.
|
153
|
+
</summary>
|
154
|
+
<param name="author">The company or person holding the copyright.</param>
|
155
|
+
<param name="years">The years of coverage of copyright.</param>
|
156
|
+
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="author"/> is null or empty string.</exception>
|
157
|
+
<exception cref="T:System.ArgumentOutOfRangeException">Thrown when parameter <paramref name="years"/> is not supplied.</exception>
|
158
|
+
</member>
|
159
|
+
<member name="M:CommandLine.Text.CopyrightInfo.#ctor(System.Boolean,System.String,System.Int32[])">
|
160
|
+
<summary>
|
161
|
+
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class
|
162
|
+
specifying symbol case, author and years.
|
163
|
+
</summary>
|
164
|
+
<param name="isSymbolUpper">The case of the copyright symbol.</param>
|
165
|
+
<param name="author">The company or person holding the copyright.</param>
|
166
|
+
<param name="years">The years of coverage of copyright.</param>
|
167
|
+
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="author"/> is null or empty string.</exception>
|
168
|
+
<exception cref="T:System.ArgumentOutOfRangeException">Thrown when parameter <paramref name="years"/> is not supplied.</exception>
|
169
|
+
</member>
|
170
|
+
<member name="M:CommandLine.Text.CopyrightInfo.ToString">
|
171
|
+
<summary>
|
172
|
+
Returns the copyright informations as a <see cref="T:System.String"/>.
|
173
|
+
</summary>
|
174
|
+
<returns>The <see cref="T:System.String"/> that contains the copyright informations.</returns>
|
175
|
+
</member>
|
176
|
+
<member name="M:CommandLine.Text.CopyrightInfo.op_Implicit(CommandLine.Text.CopyrightInfo)~System.String">
|
177
|
+
<summary>
|
178
|
+
Converts the copyright informations to a <see cref="T:System.String"/>.
|
179
|
+
</summary>
|
180
|
+
<param name="info">This <see cref="T:CommandLine.Text.CopyrightInfo"/> instance.</param>
|
181
|
+
<returns>The <see cref="T:System.String"/> that contains the copyright informations.</returns>
|
182
|
+
</member>
|
183
|
+
<member name="M:CommandLine.Text.CopyrightInfo.FormatYears(System.Int32[])">
|
184
|
+
<summary>
|
185
|
+
When overridden in a derived class, allows to specify a new algorithm to render copyright years
|
186
|
+
as a <see cref="T:System.String"/> instance.
|
187
|
+
</summary>
|
188
|
+
<param name="years">A <see cref="T:System.Int32"/> array of years.</param>
|
189
|
+
<returns>A <see cref="T:System.String"/> instance with copyright years.</returns>
|
190
|
+
</member>
|
191
|
+
<member name="P:CommandLine.Text.CopyrightInfo.CopyrightWord">
|
192
|
+
<summary>
|
193
|
+
When overridden in a derived class, allows to specify a different copyright word.
|
194
|
+
</summary>
|
195
|
+
</member>
|
196
|
+
<member name="T:CommandLine.ICommandLineParser">
|
197
|
+
<summary>
|
198
|
+
Defines a basic interface to parse command line arguments.
|
199
|
+
</summary>
|
200
|
+
</member>
|
201
|
+
<member name="M:CommandLine.ICommandLineParser.ParseArguments(System.String[],System.Object)">
|
202
|
+
<summary>
|
203
|
+
Parses a <see cref="T:System.String"/> array of command line arguments, setting values in <paramref name="options"/>
|
204
|
+
parameter instance's public fields decorated with appropriate attributes.
|
205
|
+
</summary>
|
206
|
+
<param name="args">A <see cref="T:System.String"/> array of command line arguments.</param>
|
207
|
+
<param name="options">An object's instance used to receive values.
|
208
|
+
Parsing rules are defined using <see cref="T:CommandLine.BaseOptionAttribute"/> derived types.</param>
|
209
|
+
<returns>True if parsing process succeed.</returns>
|
210
|
+
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="args"/> is null.</exception>
|
211
|
+
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="options"/> is null.</exception>
|
212
|
+
</member>
|
213
|
+
<member name="M:CommandLine.ICommandLineParser.ParseArguments(System.String[],System.Object,System.IO.TextWriter)">
|
214
|
+
<summary>
|
215
|
+
Parses a <see cref="T:System.String"/> array of command line arguments, setting values in <paramref name="options"/>
|
216
|
+
parameter instance's public fields decorated with appropriate attributes.
|
217
|
+
This overload allows you to specify a <see cref="T:System.IO.TextWriter"/> derived instance for write text messages.
|
218
|
+
</summary>
|
219
|
+
<param name="args">A <see cref="T:System.String"/> array of command line arguments.</param>
|
220
|
+
<param name="options">An object's instance used to receive values.
|
221
|
+
Parsing rules are defined using <see cref="T:CommandLine.BaseOptionAttribute"/> derived types.</param>
|
222
|
+
<param name="helpWriter">Any instance derived from <see cref="T:System.IO.TextWriter"/>,
|
223
|
+
usually <see cref="P:System.Console.Error"/>. Setting this argument to null, will disable help screen.</param>
|
224
|
+
<returns>True if parsing process succeed.</returns>
|
225
|
+
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="args"/> is null.</exception>
|
226
|
+
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="options"/> is null.</exception>
|
227
|
+
</member>
|
228
|
+
<member name="T:CommandLine.CommandLineParser">
|
229
|
+
<summary>
|
230
|
+
Provides methods to parse command line arguments.
|
231
|
+
Default implementation for <see cref="T:CommandLine.ICommandLineParser"/>.
|
232
|
+
</summary>
|
233
|
+
</member>
|
234
|
+
<member name="M:CommandLine.CommandLineParser.#ctor">
|
235
|
+
<summary>
|
236
|
+
Initializes a new instance of the <see cref="T:CommandLine.CommandLineParser"/> class.
|
237
|
+
</summary>
|
238
|
+
</member>
|
239
|
+
<member name="M:CommandLine.CommandLineParser.#ctor(CommandLine.CommandLineParserSettings)">
|
240
|
+
<summary>
|
241
|
+
Initializes a new instance of the <see cref="T:CommandLine.CommandLineParser"/> class,
|
242
|
+
configurable with a <see cref="T:CommandLine.CommandLineParserSettings"/> object.
|
243
|
+
</summary>
|
244
|
+
<param name="settings">The <see cref="T:CommandLine.CommandLineParserSettings"/> object is used to configure
|
245
|
+
aspects and behaviors of the parser.</param>
|
246
|
+
</member>
|
247
|
+
<member name="M:CommandLine.CommandLineParser.ParseArguments(System.String[],System.Object)">
|
248
|
+
<summary>
|
249
|
+
Parses a <see cref="T:System.String"/> array of command line arguments, setting values in <paramref name="options"/>
|
250
|
+
parameter instance's public fields decorated with appropriate attributes.
|
251
|
+
</summary>
|
252
|
+
<param name="args">A <see cref="T:System.String"/> array of command line arguments.</param>
|
253
|
+
<param name="options">An object's instance used to receive values.
|
254
|
+
Parsing rules are defined using <see cref="T:CommandLine.BaseOptionAttribute"/> derived types.</param>
|
255
|
+
<returns>True if parsing process succeed.</returns>
|
256
|
+
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="args"/> is null.</exception>
|
257
|
+
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="options"/> is null.</exception>
|
258
|
+
</member>
|
259
|
+
<member name="M:CommandLine.CommandLineParser.ParseArguments(System.String[],System.Object,System.IO.TextWriter)">
|
260
|
+
<summary>
|
261
|
+
Parses a <see cref="T:System.String"/> array of command line arguments, setting values in <paramref name="options"/>
|
262
|
+
parameter instance's public fields decorated with appropriate attributes.
|
263
|
+
This overload allows you to specify a <see cref="T:System.IO.TextWriter"/> derived instance for write text messages.
|
264
|
+
</summary>
|
265
|
+
<param name="args">A <see cref="T:System.String"/> array of command line arguments.</param>
|
266
|
+
<param name="options">An object's instance used to receive values.
|
267
|
+
Parsing rules are defined using <see cref="T:CommandLine.BaseOptionAttribute"/> derived types.</param>
|
268
|
+
<param name="helpWriter">Any instance derived from <see cref="T:System.IO.TextWriter"/>,
|
269
|
+
usually <see cref="P:System.Console.Error"/>. Setting this argument to null, will disable help screen.</param>
|
270
|
+
<returns>True if parsing process succeed.</returns>
|
271
|
+
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="args"/> is null.</exception>
|
272
|
+
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="options"/> is null.</exception>
|
273
|
+
</member>
|
274
|
+
<member name="T:CommandLine.Text.HelpText">
|
275
|
+
<summary>
|
276
|
+
Models an help text and collects related informations.
|
277
|
+
You can assign it in place of a <see cref="T:System.String"/> instance.
|
278
|
+
</summary>
|
279
|
+
</member>
|
280
|
+
<member name="M:CommandLine.Text.HelpText.#ctor(System.String)">
|
281
|
+
<summary>
|
282
|
+
Initializes a new instance of the <see cref="T:CommandLine.Text.HelpText"/> class
|
283
|
+
specifying heading informations.
|
284
|
+
</summary>
|
285
|
+
<param name="heading">A string with heading information or
|
286
|
+
an instance of <see cref="T:CommandLine.Text.HeadingInfo"/>.</param>
|
287
|
+
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="heading"/> is null or empty string.</exception>
|
288
|
+
</member>
|
289
|
+
<member name="M:CommandLine.Text.HelpText.AddPreOptionsLine(System.String)">
|
290
|
+
<summary>
|
291
|
+
Adds a text line after copyright and before options usage informations.
|
292
|
+
</summary>
|
293
|
+
<param name="value">A <see cref="T:System.String"/> instance.</param>
|
294
|
+
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="value"/> is null or empty string.</exception>
|
295
|
+
</member>
|
296
|
+
<member name="M:CommandLine.Text.HelpText.AddPostOptionsLine(System.String)">
|
297
|
+
<summary>
|
298
|
+
Adds a text line at the bottom, after options usage informations.
|
299
|
+
</summary>
|
300
|
+
<param name="value">A <see cref="T:System.String"/> instance.</param>
|
301
|
+
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="value"/> is null or empty string.</exception>
|
302
|
+
</member>
|
303
|
+
<member name="M:CommandLine.Text.HelpText.AddOptions(System.Object)">
|
304
|
+
<summary>
|
305
|
+
Adds a text block with options usage informations.
|
306
|
+
</summary>
|
307
|
+
<param name="options">The instance that collected command line arguments parsed with <see cref="!:CommandLine.Parser"/> class.</param>
|
308
|
+
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="options"/> is null.</exception>
|
309
|
+
</member>
|
310
|
+
<member name="M:CommandLine.Text.HelpText.AddOptions(System.Object,System.String)">
|
311
|
+
<summary>
|
312
|
+
Adds a text block with options usage informations.
|
313
|
+
</summary>
|
314
|
+
<param name="options">The instance that collected command line arguments parsed with the <see cref="!:CommandLine.Parser"/> class.</param>
|
315
|
+
<param name="requiredWord">The word to use when the option is required.</param>
|
316
|
+
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="options"/> is null.</exception>
|
317
|
+
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="requiredWord"/> is null or empty string.</exception>
|
318
|
+
</member>
|
319
|
+
<member name="M:CommandLine.Text.HelpText.AddOptions(System.Object,System.String,System.Int32)">
|
320
|
+
<summary>
|
321
|
+
Adds a text block with options usage informations.
|
322
|
+
</summary>
|
323
|
+
<param name="options">The instance that collected command line arguments parsed with the <see cref="!:CommandLine.Parser"/> class.</param>
|
324
|
+
<param name="requiredWord">The word to use when the option is required.</param>
|
325
|
+
<param name="maximumLength">The maximum length of the help documentation.</param>
|
326
|
+
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="options"/> is null.</exception>
|
327
|
+
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="requiredWord"/> is null or empty string.</exception>
|
328
|
+
</member>
|
329
|
+
<member name="M:CommandLine.Text.HelpText.ToString">
|
330
|
+
<summary>
|
331
|
+
Returns the help informations as a <see cref="T:System.String"/>.
|
332
|
+
</summary>
|
333
|
+
<returns>The <see cref="T:System.String"/> that contains the help informations.</returns>
|
334
|
+
</member>
|
335
|
+
<member name="M:CommandLine.Text.HelpText.op_Implicit(CommandLine.Text.HelpText)~System.String">
|
336
|
+
<summary>
|
337
|
+
Converts the help informations to a <see cref="T:System.String"/>.
|
338
|
+
</summary>
|
339
|
+
<param name="info">This <see cref="T:CommandLine.Text.HelpText"/> instance.</param>
|
340
|
+
<returns>The <see cref="T:System.String"/> that contains the help informations.</returns>
|
341
|
+
</member>
|
342
|
+
<member name="P:CommandLine.Text.HelpText.Copyright">
|
343
|
+
<summary>
|
344
|
+
Sets the copyright information string.
|
345
|
+
You can directly assign a <see cref="T:CommandLine.Text.CopyrightInfo"/> instance.
|
346
|
+
</summary>
|
347
|
+
</member>
|
348
|
+
<member name="P:CommandLine.Text.HelpText.MaximumDisplayWidth">
|
349
|
+
<summary>
|
350
|
+
Gets or sets the maximum width of the display. This determines word wrap when displaying the text.
|
351
|
+
</summary>
|
352
|
+
<value>The maximum width of the display.</value>
|
353
|
+
</member>
|
354
|
+
<member name="P:CommandLine.Text.HelpText.AdditionalNewLineAfterOption">
|
355
|
+
<summary>
|
356
|
+
Gets or sets whether to add an additional line after the description of the option.
|
357
|
+
</summary>
|
358
|
+
</member>
|
359
|
+
<member name="T:CommandLine.Text.HeadingInfo">
|
360
|
+
<summary>
|
361
|
+
Models the heading informations part of an help text.
|
362
|
+
You can assign it where you assign any <see cref="T:System.String"/> instance.
|
363
|
+
</summary>
|
364
|
+
</member>
|
365
|
+
<member name="M:CommandLine.Text.HeadingInfo.#ctor(System.String)">
|
366
|
+
<summary>
|
367
|
+
Initializes a new instance of the <see cref="T:CommandLine.Text.HeadingInfo"/> class
|
368
|
+
specifying program name.
|
369
|
+
</summary>
|
370
|
+
<param name="programName">The name of the program.</param>
|
371
|
+
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="programName"/> is null or empty string.</exception>
|
372
|
+
</member>
|
373
|
+
<member name="M:CommandLine.Text.HeadingInfo.#ctor(System.String,System.String)">
|
374
|
+
<summary>
|
375
|
+
Initializes a new instance of the <see cref="T:CommandLine.Text.HeadingInfo"/> class
|
376
|
+
specifying program name and version.
|
377
|
+
</summary>
|
378
|
+
<param name="programName">The name of the program.</param>
|
379
|
+
<param name="version">The version of the program.</param>
|
380
|
+
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="programName"/> is null or empty string.</exception>
|
381
|
+
</member>
|
382
|
+
<member name="M:CommandLine.Text.HeadingInfo.ToString">
|
383
|
+
<summary>
|
384
|
+
Returns the heading informations as a <see cref="T:System.String"/>.
|
385
|
+
</summary>
|
386
|
+
<returns>The <see cref="T:System.String"/> that contains the heading informations.</returns>
|
387
|
+
</member>
|
388
|
+
<member name="M:CommandLine.Text.HeadingInfo.op_Implicit(CommandLine.Text.HeadingInfo)~System.String">
|
389
|
+
<summary>
|
390
|
+
Converts the heading informations to a <see cref="T:System.String"/>.
|
391
|
+
</summary>
|
392
|
+
<param name="info">This <see cref="T:CommandLine.Text.HeadingInfo"/> instance.</param>
|
393
|
+
<returns>The <see cref="T:System.String"/> that contains the heading informations.</returns>
|
394
|
+
</member>
|
395
|
+
<member name="M:CommandLine.Text.HeadingInfo.WriteMessage(System.String,System.IO.TextWriter)">
|
396
|
+
<summary>
|
397
|
+
Writes out a string and a new line using the program name specified in the constructor
|
398
|
+
and <paramref name="message"/> parameter.
|
399
|
+
</summary>
|
400
|
+
<param name="message">The <see cref="T:System.String"/> message to write.</param>
|
401
|
+
<param name="writer">The target <see cref="T:System.IO.TextWriter"/> derived type.</param>
|
402
|
+
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="message"/> is null or empty string.</exception>
|
403
|
+
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="writer"/> is null.</exception>
|
404
|
+
</member>
|
405
|
+
<member name="M:CommandLine.Text.HeadingInfo.WriteMessage(System.String)">
|
406
|
+
<summary>
|
407
|
+
Writes out a string and a new line using the program name specified in the constructor
|
408
|
+
and <paramref name="message"/> parameter to standard output stream.
|
409
|
+
</summary>
|
410
|
+
<param name="message">The <see cref="T:System.String"/> message to write.</param>
|
411
|
+
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="message"/> is null or empty string.</exception>
|
412
|
+
</member>
|
413
|
+
<member name="M:CommandLine.Text.HeadingInfo.WriteError(System.String)">
|
414
|
+
<summary>
|
415
|
+
Writes out a string and a new line using the program name specified in the constructor
|
416
|
+
and <paramref name="message"/> parameter to standard error stream.
|
417
|
+
</summary>
|
418
|
+
<param name="message">The <see cref="T:System.String"/> message to write.</param>
|
419
|
+
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="message"/> is null or empty string.</exception>
|
420
|
+
</member>
|
421
|
+
<member name="T:CommandLine.OptionArrayAttribute">
|
422
|
+
<summary>
|
423
|
+
Models an option that can accept multiple values as separated arguments.
|
424
|
+
</summary>
|
425
|
+
</member>
|
426
|
+
<member name="M:CommandLine.OptionArrayAttribute.#ctor(System.String,System.String)">
|
427
|
+
<summary>
|
428
|
+
Initializes a new instance of the <see cref="T:CommandLine.OptionArrayAttribute"/> class.
|
429
|
+
</summary>
|
430
|
+
<param name="shortName">The short name of the option or null if not used.</param>
|
431
|
+
<param name="longName">The long name of the option or null if not used.</param>
|
432
|
+
</member>
|
433
|
+
<member name="T:CommandLine.CommandLineParserSettings">
|
434
|
+
<summary>
|
435
|
+
Specifies a set of features to configure a <see cref="T:CommandLine.CommandLineParser"/> behavior.
|
436
|
+
</summary>
|
437
|
+
</member>
|
438
|
+
<member name="M:CommandLine.CommandLineParserSettings.#ctor">
|
439
|
+
<summary>
|
440
|
+
Initializes a new instance of the <see cref="T:CommandLine.CommandLineParserSettings"/> class.
|
441
|
+
</summary>
|
442
|
+
</member>
|
443
|
+
<member name="M:CommandLine.CommandLineParserSettings.#ctor(System.Boolean)">
|
444
|
+
<summary>
|
445
|
+
Initializes a new instance of the <see cref="T:CommandLine.CommandLineParserSettings"/> class,
|
446
|
+
setting the case comparison behavior.
|
447
|
+
</summary>
|
448
|
+
<param name="caseSensitive">If set to true, parsing will be case sensitive.</param>
|
449
|
+
</member>
|
450
|
+
<member name="M:CommandLine.CommandLineParserSettings.#ctor(System.IO.TextWriter)">
|
451
|
+
<summary>
|
452
|
+
Initializes a new instance of the <see cref="T:CommandLine.CommandLineParserSettings"/> class,
|
453
|
+
setting the <see cref="T:System.IO.TextWriter"/> used for help method output.
|
454
|
+
</summary>
|
455
|
+
<param name="helpWriter">Any instance derived from <see cref="T:System.IO.TextWriter"/>,
|
456
|
+
default <see cref="P:System.Console.Error"/>. Setting this argument to null, will disable help screen.</param>
|
457
|
+
</member>
|
458
|
+
<member name="M:CommandLine.CommandLineParserSettings.#ctor(System.Boolean,System.IO.TextWriter)">
|
459
|
+
<summary>
|
460
|
+
Initializes a new instance of the <see cref="T:CommandLine.CommandLineParserSettings"/> class,
|
461
|
+
setting case comparison and help output options.
|
462
|
+
</summary>
|
463
|
+
<param name="caseSensitive">If set to true, parsing will be case sensitive.</param>
|
464
|
+
<param name="helpWriter">Any instance derived from <see cref="T:System.IO.TextWriter"/>,
|
465
|
+
default <see cref="P:System.Console.Error"/>. Setting this argument to null, will disable help screen.</param>
|
466
|
+
</member>
|
467
|
+
<member name="M:CommandLine.CommandLineParserSettings.#ctor(System.Boolean,System.Boolean)">
|
468
|
+
<summary>
|
469
|
+
Initializes a new instance of the <see cref="T:CommandLine.CommandLineParserSettings"/> class,
|
470
|
+
setting case comparison and mutually exclusive behaviors.
|
471
|
+
</summary>
|
472
|
+
<param name="caseSensitive">If set to true, parsing will be case sensitive.</param>
|
473
|
+
<param name="mutuallyExclusive">If set to true, enable mutually exclusive behavior.</param>
|
474
|
+
</member>
|
475
|
+
<member name="M:CommandLine.CommandLineParserSettings.#ctor(System.Boolean,System.Boolean,System.IO.TextWriter)">
|
476
|
+
<summary>
|
477
|
+
Initializes a new instance of the <see cref="T:CommandLine.CommandLineParserSettings"/> class,
|
478
|
+
setting case comparison, mutually exclusive behavior and help output option.
|
479
|
+
</summary>
|
480
|
+
<param name="caseSensitive">If set to true, parsing will be case sensitive.</param>
|
481
|
+
<param name="mutuallyExclusive">If set to true, enable mutually exclusive behavior.</param>
|
482
|
+
<param name="helpWriter">Any instance derived from <see cref="T:System.IO.TextWriter"/>,
|
483
|
+
default <see cref="P:System.Console.Error"/>. Setting this argument to null, will disable help screen.</param>
|
484
|
+
</member>
|
485
|
+
<member name="P:CommandLine.CommandLineParserSettings.CaseSensitive">
|
486
|
+
<summary>
|
487
|
+
Gets or sets the case comparison behavior.
|
488
|
+
Default is set to true.
|
489
|
+
</summary>
|
490
|
+
</member>
|
491
|
+
<member name="P:CommandLine.CommandLineParserSettings.MutuallyExclusive">
|
492
|
+
<summary>
|
493
|
+
Gets or sets the mutually exclusive behavior.
|
494
|
+
Default is set to false.
|
495
|
+
</summary>
|
496
|
+
</member>
|
497
|
+
<member name="P:CommandLine.CommandLineParserSettings.HelpWriter">
|
498
|
+
<summary>
|
499
|
+
Gets or sets the <see cref="T:System.IO.TextWriter"/> used for help method output.
|
500
|
+
Setting this property to null, will disable help screen.
|
501
|
+
</summary>
|
502
|
+
</member>
|
503
|
+
</members>
|
504
|
+
</doc>
|