Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 990689
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T05:58:52+00:00 2026-05-16T05:58:52+00:00

Possible Duplicate: How does one tell if an IDisposable object reference is disposed? Is

  • 0

Possible Duplicate:
How does one tell if an IDisposable object reference is disposed?

Is there a method to check if object has been disposed different then

try
{
    myObj.CallRandomMethod();
} catch (ObjectDisposedException e)
{
    // now I know object has been disposed
}

In my case I’m using TcpClient class that has Close() method which disposes object and this can happen in piece of code I don’t have control of. In this case I would like to have better solution then catching exception.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T05:58:53+00:00Added an answer on May 16, 2026 at 5:58 am

    A good way is to derive from TcpClient and override the Disposing(bool) method:

    class MyClient : TcpClient {
        public bool IsDead { get; set; }
        protected override void Dispose(bool disposing) {
            IsDead = true;
            base.Dispose(disposing);
        }
    }
    

    Which won’t work if the other code created the instance. Then you’ll have to do something desperate like using Reflection to get the value of the private m_CleanedUp member. Or catch the exception.

    Frankly, none is this is likely to come to a very good end. You really did want to write to the TCP port. But you won’t, that buggy code you can’t control is now in control of your code. You’ve increased the impact of the bug. Talking to the owner of that code and working something out is by far the best solution.

    EDIT: A reflection example:

    using System.Reflection;
    public static bool SocketIsDisposed(Socket s)
    {
       BindingFlags bfIsDisposed = BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.GetProperty;
       // Retrieve a FieldInfo instance corresponding to the field
       PropertyInfo field = s.GetType().GetProperty("CleanedUp", bfIsDisposed);
       // Retrieve the value of the field, and cast as necessary
       return (bool)field.GetValue(s, null);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: How does one add additional items to NSMenu in Interface Builder? There's
Possible Duplicate: Oracle "(+)" Operator Can some one tell me what does (+) sign
Possible Duplicate: thread with multiple parameters How does one thread a sub with two
Possible Duplicate: from . import x using __import__ ? How does one do the
Possible Duplicate: How does this bash fork bomb work? Today one of my friend
Possible Duplicate: Why does one often see null != variable instead of variable !=
Possible Duplicate: Why does one often see “null != variable” instead of “variable !=
Possible Duplicate: TSQL query to concatenate and remove common prefix Hi How does one
Possible Duplicate: How to crop the parsed image in android? How does one crop
Possible Duplicate: How does Python compare string and int? Can any one explain the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.