IDisposable is an interface within the Microsoft .NET Framework's Base Class Library (BCL). It is intended to provide a generic, deterministic method of releasing unmanaged resources within .NET application code.

learn more… | top users | synonyms

0
votes
1answer
35 views

How to dispose/delete managed object from C++/CLI

I'm working on a native C++ project (/clr enabled) that must use a couple of managed, COM visible C# DLLs. Some of the managed objects implement IDisposable and I would like to call Dispose() on them. ...
3
votes
2answers
41 views

How much using statements should I use? There is a limit?

Hey guys can you give me some tips. I've noticed that the correct way to open and close connections to a database is using the using statement that automatically use the IDisposable interface to ...
0
votes
2answers
36 views

How certain types like Image can be Dispose using the Dispose() method

Let's say I have a large Image object, if I call the Dispose() method of this object I can easily see the memory consumption of my application be reduced, since I just cleared the object from memory. ...
0
votes
2answers
49 views

Types that own disposable fields should be disposable. how to solve this warning?

I tried using Run Code Analysis option in VisualStudio 2012, as a result of it I got a warning as CA1001 Types that own disposable fields should be disposable Implement IDisposable on ...
3
votes
3answers
67 views

Can I clear an external variable inside a using block?

I have a static StreamWriter field for a log file I need to access through a lambda function that listens to StandardOutput on a long-running Process. I'm using the null/not-null status of the field ...
0
votes
0answers
17 views

Release Unmanaged Objects from VB.NET or C#

I have one .net web application from that application i have created one Wrapper Class to call functions in C/C++ libraries(Unmanaged Code). My only concern is to how the objects created by C/C++ ...
1
vote
1answer
29 views

Disposing resource in Linq statement lambdas

I have some code: using(var userlookup = new UserLookup()) { someThing = someCollection .Select(t => { var user = ...
0
votes
1answer
103 views

Can I use “fuzzy” parameter pass with IDisposable objects?

Here is simple snippet I created to understand why I have dispose before action in my code type IType = inherit IDisposable abstract say : string -> unit let St = { new IType with ...
1
vote
1answer
122 views

Why I can not use disposable objects in object members?

I don't want to add StreamWriter parameter to Write-To-File procedure but when I'm trying to work with disposable StreamWriter there I'm getting: An unhandled exception of type ...
2
votes
3answers
84 views

How can I dispose an object

I am trying to delete a Node from a linked list. Below is the code I have tried. public class Node : IDisposable { public int Value { get; set; } public Node Next { get; set; } public ...
0
votes
1answer
53 views

How do I dispose of ToolStripDropDown?

I ran the Code Analysis option on my VS2012 project and it discovered the following; CA1001 Types that own disposable fields should be disposable Implement IDisposable on ...
1
vote
2answers
209 views

Why is there no contract for disposal?

We have constructors and we can treat them as contracts to follow for object instantiation. There's no other way to create an instance without providing exact set of parameters to constructor. But ...
3
votes
3answers
91 views

Is there any reason the C# / .NET compiler(s) do not warn about Dispose()?

I was thinking about this just today whilst I was writing some IDisposable code. It's good practice for the developer to either call Dispose() directly, or if the lifetime of the object allows, to ...
2
votes
4answers
107 views

Understanding IDisposable

I have a class that has a DbConnection variable. In the class constructor I assign a new DbConnection instance to it. Since it is an IDisposable, am I supposed to do something with it at my class's ...
2
votes
3answers
77 views

Is this proper usage of IDisposable?

I have a FTP class which has a Dipose() method public class Ftp : IFtp { //other methods, properties and fields public void Dispose() { if (_ftp.IsConnected) ...
6
votes
6answers
206 views

Why call Dispose()? Memory leak won't occur?

Edit: My question isn't getting the main answer that I was looking for. I wasn't clear. I would really like to know two things: Can NOT calling Dispose() cause memory leaks? What's the worst thing ...
0
votes
1answer
28 views

Is it safe to call Dispose on an instance from event handler?

public class MyTask : IDisposable { ... } MyTask task = new MyTask(() => SomeTask); task.Completed += (s, e) => { // do something with result ... // dispose of this instance ...
0
votes
0answers
25 views

Generalizing the SqlDataReader pattern

I have a lot of code of the form: Using cn As New SqlConnection(MyConnectionString) cn.Open() Using cmd As New SqlCommand(MySqlText, cn) Using dr As SqlDataReader = ...
2
votes
3answers
141 views

ClientBase doesn't implement IDisposable member

How is it possible for the System.ServiceModel.ClientBase abstract class to implement IDisposable Interface if the Dispose() Method declaration is not visible/declared? If I try to do the same I get ...
1
vote
3answers
39 views

Interfaces using IDisposable

In regards to IDisposable I'm creating interface that I would expect to use system resources most of the time, but not always. Would it be prudent to anticipate the usage include IDisposable on my ...
12
votes
3answers
289 views

Do HttpClient and HttpClientHandler have to be disposed?

System.Net.Http.HttpClient and System.Net.Http.HttpClientHandler in .NET Framework 4.5 implement IDisposable (via System.Net.Http.HttpMessageInvoker). The using statement documentation says: As a ...
1
vote
1answer
67 views

properly cleanup System.ServiceModel.ServiceHost

I'm a little confused about the best way to clean up a ServiceHost. I became aware of the issue in my code because of the CA1001 warning from the Visual Studio code analyzer suggesting I implement ...
1
vote
3answers
139 views

Why Do I have to implement Dispose from IDisposable, Why not just a simple method to release…?

Why Do I have to implement Dispose from IDisposable, What if I just implement any method in my class that releases the unmanaged resource? People I talk to pretend to know the reason just telling me ...
0
votes
0answers
28 views

Thread Safe, IDisposable Safe, PerHttpRequestLifetimeManager?

I'm looking for a thread Safe, IDisposable safe, PerHttpRequestLifetimeManager. I'm running MVC 2.0 and Unity 1.2, so the Unity.Mvc3 option is too much change for me right now (need to upgrade to MVC ...
1
vote
3answers
112 views

With… End With vs Using in VB.NET

I just found out that like C#, VB.NET also has the using keyword. Until now I thought it didn't have it (stupid of me, I know...) and did stuff like this instead: With New ...
1
vote
2answers
31 views

Clean up issue when a class has properties of stream type

I have a class that has properties of stream type, as below: public class Csv { private StreamReader streadReder; private StreamWriter streamWriter; } Does it require implementation of ...
2
votes
1answer
173 views

DbContext disposing?

DbContext public class HaberPortalDB : DbContext { public DbSet<Haberler> Haberler { get; set; } public DbSet<Kategoriler> Kategoriler { get; set; } public ...
2
votes
1answer
78 views

Why the complicated scheme for correctly implementing IDisposable?

Earlier today I ran into CA1063 when running code analysis on some code at work. I have two questions: Why does the following code not cause CA1063 even though it clearly violates some of the ...
0
votes
1answer
54 views

Wpf PRISM disposable module

I'm having a WPF application that is divided into PRISM modules. I have a service that deals with some unmanaged resources, therefore it implements the IDisposable interface: public class ...
0
votes
1answer
32 views

IDisposable Error in Page_Init()

Well this is really frustrating: I had earlier posted this question in reference to Entity Framework Using IDisposable in EF and that error is gone now, but I am unable to get this clear: protected ...
5
votes
3answers
82 views

Who owns controls?

Let's say I have some component like this: class SomeForm : Form { private Control example; public void Stuff() { this.example = new ComboBox(); // ... ...
1
vote
2answers
220 views

CA1001 Visual Studio 2012 Code Analysis warning. What does it mean ?

It is not that important but I am trying to figure out what it is telling me and is it a legitimate warning ? Can someone explain this error in simple terms for me ? CA1001 Types that own ...
1
vote
2answers
155 views

How to implement IDisposable in Entity Framework?

I am having my entity framework context in a separate EL Layer, which stands for Entity Layer and then I move to DAL, then BL and my user inteface aspx.cs code page. I am confused as such how to use ...
1
vote
4answers
211 views

Why can't I use the following IEnumerable<string>?

I'm getting the following error: Error 25 The type or namespace name 'IEnumerable' could not be found (are you missing a using directive or an assembly reference?) ...
0
votes
3answers
93 views

Extension method to Dispose List not working

I've written a simple extension method to dispose off all the items in a list: public static void Dispose(this List<IDisposable> list) { for (int i = 0, il = list.Count; i < il; i++) { ...
7
votes
3answers
116 views

Need to delete objects: implement Dispose or create objects in a function?

I have some objects that read a file, save the data in arrays and make some operations. The sequence is Create object A, operate with object A. Create object B, operate with object B... The data read ...
1
vote
1answer
100 views

Out of memory exception in class which is used in Reactive

How can we release the resources in the class when the class is used in RX Framework ? I have a class in C# 4.0 lib project, which contains web service proxies, ado.net objects etc and I implemented ...
0
votes
1answer
42 views

CA2000 and returned Socket object: how to solve?

I have next function: public static Socket ConnectSocket(string srvName, int srvPort) { Socket tempSocket = null; IPHostEntry hostEntry = null; try { ...
0
votes
6answers
137 views

c# Dispose pattern

Here is a typical IDispose implementation. What I don't understand is the destructor? If the user of your class forgets to call Dispose, wouldn't you have a resource leak since the destructor will ...
3
votes
4answers
101 views

Multiple variables within same using block [duplicate]

I'm currently using two objects as follows: using (var ms = new MemoryStream()) using (var bw = new BinaryWriter(ms)) { // work with ms and bw, both referenced here } It works "fine" and is in ...
1
vote
6answers
111 views

Will an IDisposable memory leak if you don't use a using statement?

Will an IDisposable memory leak if you don't use a using statement? And if so, can someone provide a memory leak example if its not much code?
0
votes
2answers
25 views

does dispose method disposes the calling object also?

I found the following code on MSDN: public class DisposeExample { public class MyResource: IDisposable { private IntPtr handle; private Component component = new ...
1
vote
1answer
81 views

IDisposable and ReaderWriterLockSlim

I have a class MyClass. This class have a field: public ReaderWriterLockSlim rw; (public for an easier example code). Many threads can read data from MyClass using rw.EnterReadLock etc. Also I have ...
0
votes
3answers
66 views

Behavior of disposed object

I have a class with IDisposable interface. Now I don't know what behavior should I implement. Should be thrown an ObjectDisposedException for each method call in this class after Dispose method, or it ...
1
vote
1answer
50 views

Poor man's aspect oriented programming and logging using IDisposable

Every method in my project that uses whatever external resource (DB, web service call etc.) has to do logging. The problem is that I end up with a lot of somehow duplicated code. Sentences seem the ...
1
vote
4answers
99 views

What exactly is IDisposable needed for? [duplicate]

Possible Duplicate: Proper use of the IDisposable interface I tried to find an actual answer to my question from books, internet and on stackoverflow, but nothing has helped me so far, so ...
1
vote
1answer
164 views

Dependency injection and life time of IDisposable objects

I am trying to develop a library using dependency injection approach (with Ninject) and I am having some kind of confusion likely because of my incorrect design. In summary, my design approach is A ...
2
votes
3answers
58 views

Is it good/necessarily that a Interface Inherit from IDisposible(or any) if the class inherit from IDisposible(or any)?

I have search a lot but could not find about this. That's why I am asking that If a class A inherits from InterfaceA and IDisposible. Then whether it's good/necessarily that InterfaceA should inherit ...
2
votes
1answer
123 views

How to manage disposing an IList object when subsets of the list exist?

It's hard to describe this problem with words, so here's code: public class Item : IDisposable { public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } ...
1
vote
3answers
270 views

'Using' operand of type 'System.Net.Mail.SmtpClient' must implement 'System.IDisposable' - (.NET 3.5)

I have a requirement where I need to convert .NET 4.0 project to .NET 3.5 project, Everything else is fine except the "SmtpClient" So far, I have found that .NET 3.5 SmtpClient does not implement ...

1 2 3 4 5 14