How to add Third challenge question
Monday, August 19, 2019 at 11:30amHi,
I need to add third challenge question and answer to the Signer. I am not able to find any method.
please help me out on adding the third question.
code -->
foreach (var signer in signingPackage.Signers)
{
packageBuilder.WithSigner(SignerBuilder.NewSignerWithEmail(signer.Email)
.ChallengedWithQuestions(ChallengeBuilder.FirstQuestion(“Type in 12345”).Answer(“12345”).SecondQuestion(“test”).Answer(“test”))
.WithFirstName(signer.FirstName)
.WithLastName(signer.LastName)
.WithTitle(signer.DisplayTitle)
.SigningOrder(signer.SigningOrder)
.WithCustomId(signer.CustomId));
}
Appreciate your help.
Thanks
Prathy
Reply to: How to add Third challenge question
Monday, August 19, 2019 at 12:50pmforeach (var signer in signingPackage.Signers) { packageBuilder.WithSigner(SignerBuilder.NewSignerWithEmail(signer.Email) .ChallengedWithQuestions(ChallengeBuilder.FirstQuestion(“Type in 1111”).Answer(“1111”) .SecondQuestion(“Type in 2222”).Answer(“2222”) .SecondQuestion(“Type in 3333”).Answer(“3333”)) .WithFirstName(signer.FirstName) .WithLastName(signer.LastName) .WithTitle(signer.DisplayTitle) .SigningOrder(signer.SigningOrder) .WithCustomId(signer.CustomId)); }