Soap.HTTPUtil.IStreamLoader.Load

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Load(const WSDLFileName: string; Stream: TMemoryStream);

C++

virtual void __fastcall Load(const System::UnicodeString WSDLFileName, System::Classes::TMemoryStream* Stream) = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
public
Soap.HTTPUtil.pas
Soap.HTTPUtil.hpp
Soap.HTTPUtil IStreamLoader

Description

Loads a WSDL document into a memory stream.

Load reads the specified WSDL document into the specified memory stream.

WSDLFileName is the name of a WSDL document file, an XML schema file, or the URL where such a document can be found. If WSDLFileName is an URL, you may need to use the UserName, Password, and Proxy properties to indicate how the stream loader can connect to the host identified in that URL.

Stream is a memory stream to which the stream loader writes the contents of the WSDL document.

See Also