WebClientProtocol Oluşturucu
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
WebClientProtocol sınıfının yeni bir örneğini başlatır.
protected:
WebClientProtocol();
protected WebClientProtocol ();
Protected Sub New ()
Örnekler
[System::Web::Services::WebServiceBindingAttribute(Name="Service1Soap",
Namespace="http://tempuri.org/")]
ref class TempConvertService: public System::Web::Services::Protocols::WebClientProtocol
{
public:
TempConvertService() : WebClientProtocol()
{
// Rest of class initialization.
}
[System.Web.Services.WebServiceBindingAttribute(Name="Service1Soap",
Namespace="http://tempuri.org/")]
class TempConvertService: System.Web.Services.Protocols.WebClientProtocol
{
public TempConvertService(): base()
{
// Rest of class initialization.
}
Class TempConvertService
Inherits System.Web.Services.Protocols.WebClientProtocol
Public Sub New()
MyBase.New()
' Rest of class initialization.
End Sub
End Class