SDK Home Glossary Index Left Right Up

Network Interface Progress


Section contents


Overview

Defined in

csocket.oxh


Construction / destruction


NewNifProgress - Constructor

Usage

this& = NewNifProgress&:

Description

Create a networking interface progress object and returns a handle to the created object.

Return value
this& A handle which represents the created network interface progress
Error Handling

If the object could not be created then an error is generated which should be trapped by an ONERR handler.

Example
  LOCAL this&

  this& = NewNifProgress&:
  DeleteNifProgress:(this&) 

DeleteNifProgress - Destructor

Usage

DeleteNifProgress:(BYREF this&)

Description

Destroys the network interface progress object.

Arguments
BYREF this& A handle for a network interface progress object. A zero value is written back into the variable
Example
  LOCAL this&

  this& = NewNifProgress&:
  DeleteNifProgress:(this&) 

Methods provided


NifProgressError - progress error

Usage

err& = NifProgressError&:(this&)

Description

Returns the error status of the network interface connection progress.

Arguments
this& A handle for a network interface progress object
Return value
err& An error code

NifProgressStage - progress stage

Usage

stage% = NifProgressStage%:(this&)

Description

Returns the stage of the network interface connection progress.

Arguments
this& A handle for a network interface progress object
Return value
stage% The progress stage of the network interface

  SDK Home Glossary Index Left Right Up