SDK Home Glossary Index Left Right Up

Network Interface Agent Information


Section contents


Overview

Defined in

csocket.oxh


Construction / destruction


NewNifAgentInfo - Constructor

Usage

this& = NewNifAgentInfo&:

Description

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

Return value
this& A handle which represents the created network interface agent information
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& = NewNifAgentInfo&:
  DeleteNifAgentInfo:(this&) 

DeleteNifAgentInfo - Destructor

Usage

DeleteNifAgentInfo:(BYREF this&)

Description

Destroys the network interface agent information object.

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

  this& = NewNifAgentInfo&:
  DeleteNifAgentInfo:(this&) 

Methods provided


NifAgentInfoName - name

Usage

name$ = NifAgentInfoName$:(this&)

Description

Returns the name of the agent.

Arguments
this& A handle for a network interface agent information object
Return value
name$ The name of the agent

NifAgentInfoVersion - version

Usage

version& = NifAgentInfoVersion&:(this&)

Description

Returns the version number of the agent.

Arguments
this& A handle for a network interface agent information object
Return value
version& A handle to a version object

  SDK Home Glossary Index Left Right Up