本文整理汇总了C#中Envelope.RequestRecipientToken方法的典型用法代码示例。如果您正苦于以下问题:C# Envelope.RequestRecipientToken方法的具体用法?C# Envelope.RequestRecipientToken怎么用?C# Envelope.RequestRecipientToken使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Envelope
的用法示例。
在下文中一共展示了Envelope.RequestRecipientToken方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RequestTokenRequestRecipientTokenFromTemplate
public void RequestTokenRequestRecipientTokenFromTemplate()
{
_recipients = SendingTests.CreateOneSigner();
_recipients[0].CaptiveInfo = new DocuSignWeb.RecipientCaptiveInfo();
_recipients[0].CaptiveInfo.ClientUserId = _captiveInfoClientId;
//
// generate role assignments
LinkedTemplateReferenceRoleAssignment[] roleAssignments = new LinkedTemplateReferenceRoleAssignment[]
{ new LinkedTemplateReferenceRoleAssignment(_recipients[0], "Signer1") };
DocuSignWeb.CustomField[] fields = new DocuSignWeb.CustomField[1];
fields[0] = new DocuSignWeb.CustomField();
fields[0].Name = "Customer ID";
fields[0].Required = "False";
fields[0].Show = "False";
fields[0].Value = "1234-1234-1234";
_envelope = Envelope.CreateEnvelopeFromTemplates(SendingTests.DefaultCredentials,
_recipients,
roleAssignments,
Resource.sampleTemplate,
"SendForSignature template unit test", "testing template creation with embedded signing",
fields);
Assert.IsNotNull(_envelope);
string token = _envelope.RequestRecipientToken(
_recipients[0],
CreateAssertion(),
Envelope.StandardUrls(new System.Uri("https://somebase.dsx.test/callback.aspx", UriKind.Absolute),
"Mike B"));
Assert.IsNotEmpty(token);
Console.Out.WriteLine("The token is: " + token);
}
示例2: RequestTokenRequestRecipientToken
public void RequestTokenRequestRecipientToken()
{
_recipients = SendingTests.CreateOneSigner();
_recipients[0].CaptiveInfo = new DocuSignWeb.RecipientCaptiveInfo();
_recipients[0].CaptiveInfo.ClientUserId = _captiveInfoClientId;
_envelope = Envelope.CreateAndSendEnvelope(SendingTests.DefaultCredentials, _recipients, SendingTests.LoadPicturePdf(_recipients[0]),
"SendForSignature unit test", "testing docusign signing services");
Assert.IsNotNull(_envelope);
string token = _envelope.RequestRecipientToken(
_recipients[0],
CreateAssertion(),
Envelope.StandardUrls(new System.Uri("https://somebase.dsx.test/callback.aspx", UriKind.Absolute),
"Mike B"));
Assert.IsNotEmpty(token);
Console.Out.WriteLine("The token is: " + token);
}