TwclObexFtpClient Class

The data processor implements the OBEX File Transfer Profile (FTP) client.

Namespace: wclObex
type
 TwclObexFtpClient = class(TwclObexFileClient)
 end;

The TwclObexFtpClient type exposes the following members.

Show:
 NameDescription
Create(TwclClientDataConnection)

Creates new OBEX File Transfer Profile Client Data Processor. (Overrides TwclObexFileClient.Create(TwclClientDataConnection).)

Top
Show:
 NameDescription
Connected

Gets the connected state. (Inherited from TwclCustomObexClient.)

Connection

Gets the connection object used to communicate with a remote device. (Inherited from TwclCustomClientDataProcessor.)

Top
Show:
 NameDescription
Abort(string)

Aborts current operation executing. (Inherited from TwclCustomObexClient.)

ChangeDir(string)

Changes current directory to the child directory.

Connect(Word)

Overloaded. Connects to an OBEX server.

Delete(string)

Deletes the object with given name.

Dir

Requests the files listing for the current directory.

Disconnect(string)

Disconnects from an OBEX server. (Inherited from TwclCustomObexClient.)

DoConnect(Integer,string)

Fires the OnConnect event. (Inherited from TwclCustomObexClient.)

DoDisconnect(Integer,string)

Fires the OnDisconnect event. (Inherited from TwclCustomObexClient.)

DoGetComplete(Integer,string,TStream)

The method called when the OBEX GET operation has been completed. (Overrides TwclObexFileClient.DoGetComplete(Integer,string,TStream).)

DoProgress(Cardinal,Cardinal)

Fires the OnProgress event. (Inherited from TwclCustomObexClient.)

DoPutComplete(Integer,string,TStream)

The method called when the OBEX PUT operation has been completed. (Overrides TwclObexFileClient.DoPutComplete(Integer,string,TStream).)

DoSetPathComplete(Integer,string)

The method called when the OBEX SET_PATH operation has been completed. (Overrides TwclCustomObexClient.DoSetPathComplete(Integer,string).)

DoWrite(Pointer,Cardinal,Cardinal,Integer)

Fires the OnWrite event. (Inherited from TwclCustomDataProcessor.)

Get(string,TStream)

Requests an object from a server.

MkDir(string)

Creates new directory.

ProcessData(Pointer,Cardinal)

The method called by the Connection when data has been received from a remote device. (Overrides TwclCustomDataProcessor.ProcessData(Pointer,Cardinal).)

Put(string,string,TStream)

Sends one object from the client to the server.

SetPath(string,Boolean)

Changes the current directory on the server's side. (Inherited from TwclCustomObexClient.)

Write(Pointer,Cardinal)

Sends data to the connected device. (Inherited from TwclCustomDataProcessor.)

WriteData(Pointer,Cardinal,Cardinal)

Writes data to the Client Connection. (Overrides TwclCustomDataProcessor.WriteData(Pointer,Cardinal,Cardinal).)

Top
Show:
 NameDescription
OnChangeDirComplete

The event fires when the change directory operation has been completed.

OnConnect

The event fires when the Connect operation has been completed completed. (Inherited from TwclCustomObexClient.)

OnDeleteComplete

The event fires when the delet operation has been completed.

OnDirComplete

The event fires when directory listing has been completed.

OnDisconnect

The event fires when the Disconnect operation completed. (Inherited from TwclCustomObexClient.)

OnGetComplete

The event fires when the Get operation has been completed. (Inherited from TwclObexFileClient.)

OnMakeDirComplete

The event fires when the creting directory operation has been completed.

OnProgress

The event fires during sending or receiving an object to indicate operation prorgess. (Inherited from TwclCustomObexClient.)

OnPutComplete

The event fires when the Put operation has been completed. (Inherited from TwclObexFileClient.)

OnWrite

The event fires when the Data Processor needs to write data to a connection but a connection is not assigned. (Inherited from TwclCustomDataProcessor.)

Top