本文整理汇总了C#中System.Web.Services.Description.ServiceDescription.Read方法的典型用法代码示例。如果您正苦于以下问题:C# ServiceDescription.Read方法的具体用法?C# ServiceDescription.Read怎么用?C# ServiceDescription.Read使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Web.Services.Description.ServiceDescription
的用法示例。
在下文中一共展示了ServiceDescription.Read方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: StreamReader
// Create a StreamReader to read a WSDL file.
StreamReader myStreamReader = new StreamReader("MyWsdl.wsdl");
ServiceDescription myDescription =
ServiceDescription.Read(myStreamReader);
Console.WriteLine("Bindings are:");
// Display the Bindings present in the WSDL file.
foreach(Binding myBinding in myDescription.Bindings)
{
Console.WriteLine(myBinding.Name);
}
示例2: ServiceDescription
ServiceDescription myDescription = new ServiceDescription();
myDescription = ServiceDescription.Read("MyWsdl_CS.wsdl");
myDescription.Name = "MyServiceDescription";
Console.WriteLine("Name: " + myDescription.Name);
MessageCollection myMessageCollection = myDescription.Messages;
// Remove the message at index 0 from the message collection.
myMessageCollection.Remove(myDescription.Messages[0]);
// Build a new message.
Message myMessage = new Message();
myMessage.Name = "AddSoapIn";
// Build a new MessagePart.
MessagePart myMessagePart = new MessagePart();
myMessagePart.Name = "parameters";
XmlQualifiedName myXmlQualifiedName = new XmlQualifiedName("s0:Add");
myMessagePart.Element = myXmlQualifiedName;
// Add MessageParts to the message.
myMessage.Parts.Add(myMessagePart);
// Add the message to the ServiceDescription.
myDescription.Messages.Add(myMessage);
myDescription.Write("MyOutWsdl.wsdl");
示例3: ServiceDescription
ServiceDescription myDescription = new ServiceDescription();
// Create a StreamReader to read a WSDL file.
TextReader myTextReader = new StreamReader("MyWsdl.wsdl");
myDescription = ServiceDescription.Read(myTextReader);
Console.WriteLine("Bindings are: ");
// Display the Bindings present in the WSDL file.
foreach(Binding myBinding in myDescription.Bindings)
{
Console.WriteLine(myBinding.Name);
}
示例4: XmlTextReader
// Create a new XmlTextWriter with specified URL.
XmlTextReader myXmlReader = new XmlTextReader("All_CS.wsdl");
ServiceDescription myServiceDescription =
ServiceDescription.Read(myXmlReader);
myServiceDescription.TargetNamespace = "http://tempuri.org/";
// Remove the service named MathService.
ServiceCollection myServiceDescriptionCollection =
myServiceDescription.Services;
myServiceDescriptionCollection.Remove(
myServiceDescription.Services["MathService"]);