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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









PortType

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

This class represents the WSDL <portType>
element. It groups a set of related Operation
objects, and identifies them with a Name. In a
WSDL document generated by ASP.NET, there are three
<portType> elements: one relating to HTTP
GET, another for HTTP POST, and one for SOAP transmissions. ASP.NET
creates these elements using the name of your web service and adding
a suffix describing the type of transmission (for example,
MyWebServiceHttpGet).

public sealed class 

PortType : DocumentableItem {
// Public Constructors
public

PortType ( );
// Public Instance Properties
public string

Name {set; get; }
public OperationCollection

Operations {get; }
public ServiceDescription

ServiceDescription {get; }
}



Hierarchy


System.Object
DocumentableItem
PortType

Returned By


Operation.PortType,
PortTypeCollection.this,
ProtocolImporter.PortType,
ProtocolReflector.PortType,
ServiceDescriptionCollection.GetPortType( )

Passed To


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


/ 873