本文整理汇总了C#中System.Collections.Hashtable.IsNull方法的典型用法代码示例。如果您正苦于以下问题:C# Hashtable.IsNull方法的具体用法?C# Hashtable.IsNull怎么用?C# Hashtable.IsNull使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Collections.Hashtable
的用法示例。
在下文中一共展示了Hashtable.IsNull方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: EncodeParamsToSoap
private static byte[] EncodeParamsToSoap(Hashtable paras, String xmlNS, String methodName) {
XmlDocument doc = new XmlDocument();
doc.LoadXml("<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\"></soap:Envelope>");
XmlDeclaration decl = doc.CreateXmlDeclaration("1.0", "utf-8", null);
doc.InsertBefore(decl, doc.DocumentElement);
XmlElement soapBody = doc.CreateElement("soap", "Body", "http://schemas.xmlsoap.org/soap/envelope/");
XmlElement soapMethod = doc.CreateElement(methodName);
soapMethod.SetAttribute("xmlns", xmlNS);
if (!(paras.IsNull() || paras.Count == 0)) {
foreach (string k in paras.Keys) {
XmlElement soapPar = doc.CreateElement(k);
soapPar.InnerText = paras[k].ToString();
soapMethod.AppendChild(soapPar);
}
}
soapBody.AppendChild(soapMethod);
doc.DocumentElement.AppendChild(soapBody);
return Encoding.UTF8.GetBytes(doc.OuterXml);
}
示例2: GetWebService
/// <summary>
/// GET方式调用WebService
/// </summary>
/// <param name="url">server接口</param>
/// <param name="methodName">方法名</param>
/// <param name="parms">参数</param>
/// <returns></returns>
public static string GetWebService(string url, string methodName, Hashtable parms) {
string param = parms.IsNull() || parms.Count == 0 ? string.Empty : ("?" + parms.ToUrl());
return GetWebService(url, methodName, param);
}