python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Prevent object dispose inside using block
Workflow:
I have a winform app with two forms, in the 1st form I query a liteDB and it manipulates an IEnumerable<T> instance inside a using block with retrieved data.
IEnumerable<student>...
Shahaboddin
Votes: 0
Answers: 2
System.ObjectDisposedException: Safe handle has been closed occurs when I try to open SQL Teradata connection using TdConnection class
I have a C# console application trying to connect to SQL Teradata using TdConnection class.
Below is my code:
using (TdConnection conn = new TdConnection(connstr))
{
using (TdCommand tdCmd = new T...
Yograj Varsolkar
Votes: 0
Answers: 0
Cannot access a disposed object. Object name: 'SslStream'
We have an service bus triggered Azure function which makes a call to an http triggered Azure function and from times to times we are experiencing the error below,
The operation was canceled. The rea...
Konstantinos Ventouris
Votes: 0
Answers: 1