| 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 | 6, 7 | Windows, Linux, MacOS |
| .NET Framework | 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8 | Windows |
| .NET Standard | 2.0 | Windows, Linux, MacOS |