/// <summary>Snippet for MethodOneSignature</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void MethodOneSignature()
 {
     // Create client
     SnippetsClient snippetsClient = SnippetsClient.Create();
     // Initialize request argument(s)
     string aString = "";
     int anInt = 0;
     bool aBool = false;
     // Make the request
     Response response = snippetsClient.MethodOneSignature(aString, anInt, aBool);
 }
 /// <summary>Snippet for MethodOneSignature</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void MethodOneSignatureRequestObject()
 {
     // Create client
     SnippetsClient snippetsClient = SnippetsClient.Create();
     // Initialize request argument(s)
     SignatureRequest request = new SignatureRequest
     {
         AString      = "",
         AnInt        = 0,
         ABool        = false,
         MapIntString = { { 0, "" }, },
     };
     // Make the request
     Response response = snippetsClient.MethodOneSignature(request);
 }