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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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







HttpSimpleClientProtocolmarshal by reference, disposable

System.Web.Services.Protocols (system.web.services.dll)abstract class

This abstract class provides basic functionality for communicating
with a web service over HTTP. This class is inherited by
HttpGetClientProtocol and
HttpPostClientProtocol, both of which your proxy
classes can derive from directly. Parameters for an HTTP proxy are
encoded by using application/x-www-form-urlencoded
content type.

public abstract class 

HttpSimpleClientProtocol : HttpWebClientProtocol {
// Protected Constructors
protected

HttpSimpleClientProtocol ( );
// Protected Instance Methods
protected IAsyncResult

BeginInvoke (string

methodName , string

requestUrl , object[ ]

parameters ,
AsyncCallback

callback , object

asyncState );
protected object

EndInvoke (IAsyncResult

asyncResult );
protected object

Invoke (string

methodName , string

requestUrl , object[ ]

parameters );
}



Hierarchy


System.Object
System.MarshalByRefObject

System.ComponentModel.Component(System.ComponentModel.IComponent,
System.IDisposable)

WebClientProtocol
HttpWebClientProtocol
HttpSimpleClientProtocol

Subclasses


HttpGetClientProtocol,
HttpPostClientProtocol

/ 873