Skip to content

Commit 18986d0

Browse files
committed
codestyle fixes for CFRPart11EmbeddedSending
1 parent d41461e commit 18986d0

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

launcher-csharp/eSignature/Examples/CFRPart11EmbeddedSending.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,11 @@ public static bool IsCfrPart11Account(string accessToken, string basePath, strin
4444
/// <param name="accessToken">Access Token for API call (OAuth)</param>
4545
/// <param name="basePath">BasePath for API calls (URI)</param>
4646
/// <param name="accountId">The DocuSign Account ID (GUID or short version) for which the APIs call would be made</param>
47-
/// <param name="countryAreaCode">Country code for the phone number used to verify the recipient/param>
47+
/// <param name="countryAreaCode">Country code for the phone number used to verify the recipient</param>
4848
/// <param name="phoneNumber">Phone number used to verify the recipient</param>
4949
/// <param name="docPdf">String of bytes representing the document (pdf)</param>
50-
/// <returns>URL for embedded signing</returns>
50+
/// <param name="redirectUrl">Redirect URL</param>
51+
/// <returns> string URL for embedded signing</returns>
5152
public static string EmbeddedSigning(string signerEmail, string signerName, string accessToken, string basePath, string accountId, string countryAreaCode, string phoneNumber, string docPdf, string redirectUrl)
5253
{
5354
// Construct your API headers
@@ -150,7 +151,7 @@ public static string EmbeddedSigning(string signerEmail, string signerName, stri
150151
//ds-snippet-end:eSign41Step4
151152

152153
//ds-snippet-start:eSign41Step5
153-
RecipientViewRequest viewRequest = MakeRecipientViewRequest(signerEmail, signerName, redirectUrl, _clientUserId);
154+
RecipientViewRequest viewRequest = MakeRecipientViewRequest(signerEmail, signerName, redirectUrl, ClientUserId);
154155
//ds-snippet-end:eSign41Step5
155156

156157
// call the CreateRecipientView API
@@ -207,6 +208,7 @@ private static RecipientViewRequest MakeRecipientViewRequest(string signerEmail,
207208

208209
return viewRequest;
209210
}
211+
210212
//ds-snippet-end:eSign41Step5
211213
}
212214
}

0 commit comments

Comments
 (0)