What is the appropriate statement for releasing the session obtained from the following statement?
IDfSession session = client.newSession(docbaseName, loginObj);
A.
session.disconnect();
B.
session.close();
C.
session.release();
D.
session = null;
