本文整理匯總了C#中Tests.DnaTestURLRequest.UploadFileEx方法的典型用法代碼示例。如果您正苦於以下問題:C# DnaTestURLRequest.UploadFileEx方法的具體用法?C# DnaTestURLRequest.UploadFileEx怎麽用?C# DnaTestURLRequest.UploadFileEx使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Tests.DnaTestURLRequest
的用法示例。
在下文中一共展示了DnaTestURLRequest.UploadFileEx方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: FileUploadRequest
public void FileUploadRequest()
{
Console.WriteLine("FileUploadRequest");
DnaTestURLRequest request = new DnaTestURLRequest("haveyoursay");
Queue<KeyValuePair<string, string>> postparams = new Queue<KeyValuePair<string, string>>();
postparams.Enqueue(new KeyValuePair<string, string>("skin", "purexml"));
postparams.Enqueue(new KeyValuePair<string, string>("s_param", "1,1"));
postparams.Enqueue(new KeyValuePair<string, string>("s_param", "2,2"));
postparams.Enqueue(new KeyValuePair<string, string>("s_param", "3,3"));
string uploadfile;// set to file to upload
uploadfile = GetTestFile();
//everything except upload file and url can be left blank if needed
request.UploadFileEx(uploadfile, "acs", "image/jpeg",postparams,new CookieContainer());
//Check Parameters parsed OK.
string paramvalue = "1,1,2,2,3,3";
XmlDocument doc = request.GetLastResponseAsXML();
DnaXmlValidator validator = new DnaXmlValidator(doc.InnerXml, "H2G2CommentBoxFlat.xsd");
validator.Validate();
validator = new DnaXmlValidator(doc.SelectSingleNode(@"H2G2/PARAMS").OuterXml, "Params.xsd");
validator.Validate();
XmlNodeList nodes = doc.SelectNodes(@"H2G2/PARAMS/PARAM");
foreach (XmlNode node in nodes)
{
Assert.AreEqual(paramvalue, node.SelectSingleNode("VALUE").InnerText);
}
}