If I throw an exception from a getter of a property, is it possible to obtain the name of

the property in the catch block where I have called that property -like using reflection or

reading the stack trace?

For instance:

class Animal
{
  private string _name;
  public string Name {

           get { throw new Exception(); } 

           set { _name = value; }
                     }
}

And in another place, I call the Name property's getter and I want to obtain the property name in the catch block:

Animal cat = new Animal();

try{ 
    string catName = cat.Name;
   }

catch (Exception e)
   {

    string propertyName = //Here I should be able to reach "Name"  

   }
link|improve this question

68% accept rate
2  
Don't throw exceptions in the getter of a property. – asawyer Aug 24 '11 at 13:07
And the answer is "No". – John Saunders Aug 24 '11 at 13:07
So you say it is impossible? – pencilCake Aug 24 '11 at 13:10
whats the point, what are you trying to do, and why? – Kevin Aug 24 '11 at 13:12
1  
I like to know too why you think you need this. I bet there is something wrong with your design if you need this. – Steven Aug 24 '11 at 13:19
show 1 more comment
feedback

5 Answers

it will show in your stack trace as exception in get_Name() method. you can probably parse it to get the Property Name

link|improve this answer
Can you elaborate it on the example in the question, pls? – pencilCake Aug 24 '11 at 13:13
see @Mongus answer..Your Property when compiled will be changed to get_'PropertyName(basically getter and setter methods). – Ashley John Aug 24 '11 at 13:16
feedback

There are two options, non of which are great:

  1. Parse the get_Name() method from the Exception.StackTrace property, as Ashley and Mongus describe. This will fail when the getter gets inlined (which is not unlikely to happen), because inlined methods calls will (obviously) not show up in the stacktrace.

  2. Throw a special exception that contains that property name:

    public string PropertyName
    {
        get { throw new PropertyException("PropertyName", "Ex message.");
    } 
    

    This however isn't great either, since you should explicitly throw this type of exception. So failures from deeper down the callstack must be wrapped in that PropertyException.

link|improve this answer
feedback

You could parse e.StackTrace using a Regex :

    try
    {
            int x = this.Ong;
    }
    catch ( Exception ex )
    {
            Console.WriteLine ( Regex.Match ( ex.StackTrace, @"get_(?<prop>.*)\(\)" ).Groups["prop"].Value );
    }

Note You should put more error checking on the Regex above as Groups["prop"] may be null if the exception isn't raised from a property.

link|improve this answer
feedback

If you're considering something like this you most likely would be far better off implementing something like the INotifyPropertyChanged and stick this as part of your getter instead of only caring about the setter like normal usage.

How to: Implement the INotifyPropertyChanged Interface

link|improve this answer
feedback

Exception.TargetSite

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.