Microsoft.HockeyApp.Extensibility.Implementation.External.ExceptionDetails.ExceptionDetails C# (CSharp) Method

ExceptionDetails() protected method

protected ExceptionDetails ( string fullName, string name ) : HockeyApp
fullName string
name string
return HockeyApp
        protected ExceptionDetails(string fullName, string name)
        {
            typeName = string.Empty;
            message = string.Empty;
            hasFullStack = true;
            stack = string.Empty;
            parsedStack = new List<StackFrame>();
        }
    }

Same methods

ExceptionDetails::ExceptionDetails ( ) : HockeyApp