MessageCollection.Add(Message) Method

Definition

Adds the specified Message to the end of the MessageCollection.

C#
public int Add(System.Web.Services.Description.Message message);

Parameters

message
Message

The Message to add to the collection.

Returns

The zero-based index where the message parameter has been added.

Examples

C#
Message myMessage = new Message();
myMessage.Name = "AddSoapOut";
MessagePart myMessagePart = new MessagePart();
myMessagePart.Name = "parameters";
myMessagePart.Element = new
   XmlQualifiedName("AddResponse",myServiceDescription.TargetNamespace);
myMessage.Parts.Add(myMessagePart);
myServiceDescription.Messages.Add(myMessage);

Applies to

Produkt Verzie
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)