本文整理汇总了C#中System.Proxy.GetAnswers方法的典型用法代码示例。如果您正苦于以下问题:C# Proxy.GetAnswers方法的具体用法?C# Proxy.GetAnswers怎么用?C# Proxy.GetAnswers使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Proxy
的用法示例。
在下文中一共展示了Proxy.GetAnswers方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetAnswers
/// <summary>
/// <c>GetAnswers</c> overlays any answer collections passed into it, into a single XML answer collection.
/// It has two primary uses: it can be used to combine multiple answer collections into a single
/// answer collection; and/or it can be used to "resolve" or standardize an answer collection
/// submitted from a browser interview (which may be specially encoded) into standard XML answers.
/// </summary>
/// <param name="answers">A sequence of answer collections. Each member of this sequence
/// must be either an (encoded) interview answer collection or a regular XML answer collection.
/// Each member will be successively overlaid (overlapped) on top of the prior members to
/// form one consolidated answer collection.</param>
/// <param name="logRef">A string to display in logs related to this request.</param>
/// <returns></returns>
public string GetAnswers(IEnumerable<TextReader> answers, string logRef)
{
string logStr = logRef == null ? string.Empty : logRef;
if (answers == null)
throw new ArgumentNullException("answers", string.Format(@"WebService.Services.GetAnswers: the ""answers"" parameter passed in was null, logRef: {0}", logStr));
BinaryObject combinedAnswers;
using (Proxy client = new Proxy(_endPointName))
{
var answerObjects = (from answer in answers select Util.GetBinaryObjectFromTextReader(answer)).ToArray();
combinedAnswers = client.GetAnswers(answerObjects);
SafeCloseClient(client, logRef);
}
return Util.ExtractString(combinedAnswers);
}