JavaScript must be enabled in order to use this site.Please enable JavaScript in your browser and refresh the page. getDataContentLength Declaration int getDataContentLength(S7RClientSSjToken token) . Purpose This method gets data length of the byte[] data value from the previously received data. Parameters Parameter Description token The S7RClientSSjToken returned by Connect method. Return The method returns an int with the length value of the byte[]. Example S7RClientSSj conn = new S7RClientSSj(); S7RClientSSjToken token = conn.Connect(url, userid, password); byte[] dataIn = conn.receiveWait(token); if (dataIn != null) { int length = conn.getDataContentLength(token); } conn.Disconnect(token); Copyright © 2020. Cloud Software Group, Inc. All Rights Reserved.