bool CloseEax(EaxId tEax)
tEax. Opened express report instance moniker.
The CloseEax operation closes an instance of express report.
To get information, in the tEax parameter specify moniker of express report instance that should be closed. The operation results in the logical True if the express report was closed successfully.
Below is the example of closing an express report instance. The request contains the express report moniker. The response contains whether closing was successful.
{ "CloseEax" : { "tEax" : { "id" : "S1!M!S!E1" } } }
{ "CloseEaxResult" : "1" }
public static bool CloseEax(EaxId moniker)
{
var somClient = new SomPortTypeClient(); //Proxy object for operation execution
//Operation execution parameters
var tClose = new CloseEax()
{
tEax = moniker
};
//Close express report
var result = somClient.CloseEax(tClose);
return result;
}
See also: