Skip to content

Commit

Permalink
fixing some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
raileendr committed Oct 12, 2023
1 parent e143d64 commit 6c263ac
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions launcher-csharp/eSignature/Examples/FocusedView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public static (string, string) SendEnvelopeWithFocusedView(
//ds-snippet-start:eSign44Step5
RecipientViewRequest viewRequest = MakeRecipientViewRequest(signerEmail, signerName, returnUrl, signerClientId, pingUrl);

// call the CreateRecipientView API
// call the CreateRecipientView endpoint
ViewUrl results1 = envelopesApi.CreateRecipientView(accountId, envelopeId, viewRequest);

// State can be stored/recovered using the framework's session or a
Expand Down Expand Up @@ -87,8 +87,9 @@ public static RecipientViewRequest MakeRecipientViewRequest(string signerEmail,
// can be changed/spoofed very easily.
viewRequest.ReturnUrl = returnUrl + "?state=123";

// How has your app authenticated the user? In addition to your app's
// authentication, you can include authenticate steps from DocuSign.
// How does your app verify the user's authentication? Additionally,
// you can integrate authentication steps from DocuSign alongside
// your app's own authentication process.
// Eg, SMS authentication
viewRequest.AuthenticationMethod = "none";

Expand Down

0 comments on commit 6c263ac

Please sign in to comment.