ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] - نسخه متنی

G. andrew Duthie; matthew Macdonald

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید









Message

System.Web.Services.Description (system.web.services.dll)sealed class

This class represents the WSDL <message>
element, which is used to describe the contents of messages exchanged
between a client and the web service. For every method in a web
service, a WSDL document contains an input and output message. There
are also separate message definitions for every protocol type. For
example, for a method called GetInfo, ASP.NET
would generate GetInfoHttpPostIn and
GetInfoHttpPostOut messages, along with
corresponding messages for HTTP GET and SOAP. Messages consist of
zero or more MessagePart objects, which specify
method parameters and return values.

public sealed class 

Message : DocumentableItem {
// Public Constructors
public

Message ( );
// Public Instance Properties
public string

Name {set; get; }
public MessagePartCollection

Parts {get; }
public ServiceDescription

ServiceDescription {get; }
// Public Instance Methods
public MessagePart

FindPartByName (string

partName );
public MessagePart[ ]

FindPartsByName (string[ ]

partNames );
}



Hierarchy


System.Object
DocumentableItem
Message

Returned By


MessageCollection.this,
MessagePart.Message,
ProtocolImporter.{InputMessage,
OutputMessage},
ProtocolReflector.{InputMessage,
OutputMessage},
ServiceDescriptionCollection.GetMessage( )

Passed To


MessageCollection.{Add( ), Contains(
)
, CopyTo( ), IndexOf(
)
, Insert( ), Remove(
)
, this}


/ 873