Exception | Description |
---|---|
System.InvalidCastException | The stream is null when the TdBlob is a DBNull. |
System.ObjectDisposedException | The TdBlob is closed / disposed. |
public void long GetEmployeePictureSize(String employeeId, TdConnection cn) { long pictureSize = 0; // retrieve the picture TdBlob picture = GetEmployeePicture(employeeId, cn); if (false == picture.IsNull) { pictureSize = picture.BaseStream.Length; } // Close the TdBlob to release resources picture.Close(); // return the size return pictureSize; }
Product | Versions | Platforms |
---|---|---|
.NET | 2.1, 3.1, 6 | Windows, Linux, MacOS |
.NET Framework | 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8 | Windows |
.NET Standard | 2.0 | Windows, Linux, MacOS |