/// <summary>Snippet for MethodThreeSignatures</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void MethodThreeSignatures3()
 {
     // Create client
     SnippetsClient snippetsClient = SnippetsClient.Create();
     // Make the request
     Response response = snippetsClient.MethodThreeSignatures();
 }
 /// <summary>Snippet for MethodThreeSignatures</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void MethodThreeSignatures2()
 {
     // Create client
     SnippetsClient snippetsClient = SnippetsClient.Create();
     // Initialize request argument(s)
     string aString = "";
     bool   aBool   = false;
     // Make the request
     Response response = snippetsClient.MethodThreeSignatures(aString, aBool);
 }
 /// <summary>Snippet for MethodThreeSignatures</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void MethodThreeSignaturesRequestObject()
 {
     // 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.MethodThreeSignatures(request);
 }