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 : DATETIME
 
DATETIME
The following are the data type-specific methods for adding an ABL DATETIME parameter:

Syntax

public void AddDateTime(int position, DateTime value, int mode)

public void AddDateTime(int position, DateTime? value, int mode)

public void AddDateTime(int position,
                        Progress.Open4GL.DateHolder value, int mode)

public void AddDateTimeArray(int position, DateTime[] value, int mode,
                             int extentValue)

public void AddDateTimeArray(int position,
                             DateTime?[] value, int mode,
                             int extentValue)

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