Microsoft.CodeAnalysis.Sarif.ExceptionData.ExceptionData C# (CSharp) Méthode

ExceptionData() public méthode

Initializes a new instance of the ExceptionData class from the supplied values.
public ExceptionData ( string kind, string message, Stack stack, IEnumerable innerExceptions ) : System
kind string /// An initialization value for the property. ///
message string /// An initialization value for the property. ///
stack Stack /// An initialization value for the property. ///
innerExceptions IEnumerable /// An initialization value for the property. ///
Résultat System
        public ExceptionData(string kind, string message, Stack stack, IEnumerable<ExceptionData> innerExceptions)
        {
            Init(kind, message, stack, innerExceptions);
        }

Same methods

ExceptionData::ExceptionData ( ) : System
ExceptionData::ExceptionData ( ExceptionData other ) : System