System.Xml.XmlException.IsCatchableException C# (CSharp) Méthode

IsCatchableException() static private méthode

static private IsCatchableException ( Exception e ) : bool
e Exception
Résultat bool
        internal static bool IsCatchableException(Exception e)
        {
            Debug.Assert(e != null, "Unexpected null exception");
            return !(
                e is OutOfMemoryException ||
                e is NullReferenceException
            );
        }
    };