/// <summary>Snippet for UpdateKey</summary> public void UpdateKeyRequestObject() { // Snippet: UpdateKey(UpdateKeyRequest, CallSettings) // Create client RecaptchaEnterpriseServiceClient recaptchaEnterpriseServiceClient = RecaptchaEnterpriseServiceClient.Create(); // Initialize request argument(s) UpdateKeyRequest request = new UpdateKeyRequest { Key = new Key(), UpdateMask = new FieldMask(), }; // Make the request Key response = recaptchaEnterpriseServiceClient.UpdateKey(request); // End snippet }