close_connection#
- dlubal.api.rstab.Application.close_connection(self)#
- Closes connection to API server 
Method Type: Service
Usage
from dlubal.api import rstab
with rstab.Application() as rstab_app:
    rstab_app.close_connection()
using rstab = Dlubal.Api.Rstab;
using Google.Protobuf;
public class cantilever
{
    public static async Task CantileverModel(Application rstab_app)
    {
        await rstab_app.close_connection();
    }
}
Tip
Connection is terminated automatically at the end of the script. If the connection needs to be terminated separately, then use this function.