Ejemplo n.º 1
0
 /// <summary>Snippet for CreateAssessment</summary>
 public void CreateAssessment()
 {
     // Snippet: CreateAssessment(string, Assessment, CallSettings)
     // Create client
     RecaptchaEnterpriseServiceClient recaptchaEnterpriseServiceClient = RecaptchaEnterpriseServiceClient.Create();
     // Initialize request argument(s)
     string     parent     = "projects/[PROJECT]";
     Assessment assessment = new Assessment();
     // Make the request
     Assessment response = recaptchaEnterpriseServiceClient.CreateAssessment(parent, assessment);
     // End snippet
 }
Ejemplo n.º 2
0
 /// <summary>Snippet for CreateAssessment</summary>
 public void CreateAssessmentResourceNames()
 {
     // Snippet: CreateAssessment(ProjectName, Assessment, CallSettings)
     // Create client
     RecaptchaEnterpriseServiceClient recaptchaEnterpriseServiceClient = RecaptchaEnterpriseServiceClient.Create();
     // Initialize request argument(s)
     ProjectName parent     = ProjectName.FromProject("[PROJECT]");
     Assessment  assessment = new Assessment();
     // Make the request
     Assessment response = recaptchaEnterpriseServiceClient.CreateAssessment(parent, assessment);
     // End snippet
 }
Ejemplo n.º 3
0
        /// <summary>Snippet for AnnotateAssessment</summary>
        public void AnnotateAssessmentResourceNames()
        {
            // Snippet: AnnotateAssessment(AssessmentName, AnnotateAssessmentRequest.Types.Annotation, CallSettings)
            // Create client
            RecaptchaEnterpriseServiceClient recaptchaEnterpriseServiceClient = RecaptchaEnterpriseServiceClient.Create();
            // Initialize request argument(s)
            AssessmentName name = AssessmentName.FromProjectAssessment("[PROJECT]", "[ASSESSMENT]");

            AnnotateAssessmentRequest.Types.Annotation annotation = AnnotateAssessmentRequest.Types.Annotation.Unspecified;
            // Make the request
            AnnotateAssessmentResponse response = recaptchaEnterpriseServiceClient.AnnotateAssessment(name, annotation);
            // End snippet
        }
Ejemplo n.º 4
0
        /// <summary>Snippet for AnnotateAssessment</summary>
        public void AnnotateAssessment()
        {
            // Snippet: AnnotateAssessment(string, AnnotateAssessmentRequest.Types.Annotation, CallSettings)
            // Create client
            RecaptchaEnterpriseServiceClient recaptchaEnterpriseServiceClient = RecaptchaEnterpriseServiceClient.Create();
            // Initialize request argument(s)
            string name = "projects/[PROJECT]/assessments/[ASSESSMENT]";

            AnnotateAssessmentRequest.Types.Annotation annotation = AnnotateAssessmentRequest.Types.Annotation.Unspecified;
            // Make the request
            AnnotateAssessmentResponse response = recaptchaEnterpriseServiceClient.AnnotateAssessment(name, annotation);
            // End snippet
        }
Ejemplo n.º 5
0
 /// <summary>Snippet for GetKey</summary>
 public void GetKeyRequestObject()
 {
     // Snippet: GetKey(GetKeyRequest, CallSettings)
     // Create client
     RecaptchaEnterpriseServiceClient recaptchaEnterpriseServiceClient = RecaptchaEnterpriseServiceClient.Create();
     // Initialize request argument(s)
     GetKeyRequest request = new GetKeyRequest
     {
         KeyName = KeyName.FromProjectKey("[PROJECT]", "[KEY]"),
     };
     // Make the request
     Key response = recaptchaEnterpriseServiceClient.GetKey(request);
     // End snippet
 }
Ejemplo n.º 6
0
 /// <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
 }
Ejemplo n.º 7
0
 /// <summary>Snippet for CreateAssessment</summary>
 public void CreateAssessmentRequestObject()
 {
     // Snippet: CreateAssessment(CreateAssessmentRequest, CallSettings)
     // Create client
     RecaptchaEnterpriseServiceClient recaptchaEnterpriseServiceClient = RecaptchaEnterpriseServiceClient.Create();
     // Initialize request argument(s)
     CreateAssessmentRequest request = new CreateAssessmentRequest
     {
         ParentAsProjectName = ProjectName.FromProject("[PROJECT]"),
         Assessment          = new Assessment(),
     };
     // Make the request
     Assessment response = recaptchaEnterpriseServiceClient.CreateAssessment(request);
     // End snippet
 }
Ejemplo n.º 8
0
 /// <summary>Snippet for AnnotateAssessment</summary>
 public void AnnotateAssessmentRequestObject()
 {
     // Snippet: AnnotateAssessment(AnnotateAssessmentRequest, CallSettings)
     // Create client
     RecaptchaEnterpriseServiceClient recaptchaEnterpriseServiceClient = RecaptchaEnterpriseServiceClient.Create();
     // Initialize request argument(s)
     AnnotateAssessmentRequest request = new AnnotateAssessmentRequest
     {
         AssessmentName = AssessmentName.FromProjectAssessment("[PROJECT]", "[ASSESSMENT]"),
         Annotation     = AnnotateAssessmentRequest.Types.Annotation.Unspecified,
     };
     // Make the request
     AnnotateAssessmentResponse response = recaptchaEnterpriseServiceClient.AnnotateAssessment(request);
     // End snippet
 }
Ejemplo n.º 9
0
        /// <summary>Snippet for ListKeys</summary>
        public void ListKeysRequestObject()
        {
            // Snippet: ListKeys(ListKeysRequest, CallSettings)
            // Create client
            RecaptchaEnterpriseServiceClient recaptchaEnterpriseServiceClient = RecaptchaEnterpriseServiceClient.Create();
            // Initialize request argument(s)
            ListKeysRequest request = new ListKeysRequest
            {
                ParentAsProjectName = ProjectName.FromProject("[PROJECT]"),
            };
            // Make the request
            PagedEnumerable <ListKeysResponse, Key> response = recaptchaEnterpriseServiceClient.ListKeys(request);

            // Iterate over all response items, lazily performing RPCs as required
            foreach (Key item in response)
            {
                // Do something with each item
                Console.WriteLine(item);
            }

            // Or iterate over pages (of server-defined size), performing one RPC per page
            foreach (ListKeysResponse page in response.AsRawResponses())
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (Key item in page)
                {
                    // Do something with each item
                    Console.WriteLine(item);
                }
            }

            // Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
            int        pageSize   = 10;
            Page <Key> singlePage = response.ReadPage(pageSize);

            // Do something with the page of items
            Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
            foreach (Key item in singlePage)
            {
                // Do something with each item
                Console.WriteLine(item);
            }
            // Store the pageToken, for when the next page is required.
            string nextPageToken = singlePage.NextPageToken;
            // End snippet
        }