This is somewhat trivial but here goes. I am passing an XmlTextReader object to a method using .Net 4.0 framework.

public void TestMethod(XmlTextReader reader)
{
    try
    {
        //...
        //Logic
        //...
    }
    catch(Exception ex)
    {
        //I also want to log the file location of the XmlTextReader!
        Log(ex.Message);
    }
}

If something happens to the reader I want to log where the file the XmlTextReader is reading from. Is there an easy way to get back to the stream the XmlTextReader is using? The reason it is somewhat trivial is that I could easily pass in an additional string to the method containing the file location used to create the stream, but it just seems that has to be a way using only the XmlTextReader.

Thanks!

Update, this is actually what I'm doing... Sorry for the bad example:

public void TestMethod(XmlTextReader reader)
{
        //...
        //Logic
        //...

    if(something_inside_the_XML)
    throw new Exception(FileLocation);
}
link|improve this question
You should use XmlReader instead of XmlTextReader. Use XmlReader.Create() to create one. – John Saunders Apr 6 '11 at 14:16
feedback

4 Answers

How about this?

reader.BaseUri

This should return the original Uri used when creating your XmlTextReader object.

As the MSDN states:

The base URI tells you where these nodes came from. If there is no base URI for the nodes being returned (for example, they were parsed from an in-memory string), String.Empty is returned.

link|improve this answer
feedback

Maybe you could use

XmlTextReader.LineNumber
XmlTextReader.LinePosition
link|improve this answer
No. I want the file name. – JustBrowsing Apr 6 '11 at 14:06
feedback

If the exception had to do with the file itself being read it would be contained in the exception message already being logged.

XmlTextReader.LineNumber XmlTextReader.LinePosition

This would be the location within the file that cause the problem which also most likely would be in the exception message itself. The simple solution is to either have the filename be expose in some other way other then using it as a parameter.

link|improve this answer
Sorry, but my example wasn't perfect. I am actually throwing a new exception based on the contents of the XML – JustBrowsing Apr 6 '11 at 14:09
@Browsing - Like I said if you log the exception message you will log what is wrong with the document itself which will also have the filename contained within it. – Ramhound Apr 8 '11 at 11:28
feedback

XmlTextReader is disposable object, why not change the method signature so that it accepts the filepath and then you can stream read it via XmlTextReader. That will make you cleanly dispose the reader if any errors and log it at the same time

try
{
   using(var reader = new XmlTextReader(filepath) 
   {

   }
}
catch(Exception e)
{
  //Log here
}
link|improve this answer
See my update: but yes, that would have worked... :/ – JustBrowsing Apr 6 '11 at 14:15
feedback

Your Answer

 
or
required, but never shown

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