Try OpenEdge Now
skip to main content
.NET Open Clients
Using the Open Client .NET OpenAPI to Directly Access the AppServer : Setting up parameters and return types : Adding parameters using data type-specific methods : INT64
 
INT64
The following are the data type-specific methods for adding an ABL INT64 parameter:

Syntax

public void AddInt64(int position, Int64 value, int mode)

public void AddInt64(int position, Int64? value, int mode)

public void AddInt64(int position, Progress.Open4GL.LongHolder value,
                     int mode)

public void AddInt64Array(int position, Int64[] value, int mode,
                          int extentValue)

public void AddInt64Array(int position,
                          Int64?[] value, int mode,
                          int extentValue)

public void AddInt64Array(int position, Progress.Open4GL.LongHolder[] value,
                          int mode, int extentValue)
For information on the parameters to these methods, see General syntax for add parameter methods.