MsieJavaScriptEngine.ActiveScript.ActiveScriptException.ActiveScriptException C# (CSharp) Method

ActiveScriptException() private method

Initializes a new instance of the ActiveScriptException class with serialized data
private ActiveScriptException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The object that holds the serialized data
context System.Runtime.Serialization.StreamingContext The contextual information about the source or destination
return System
        private ActiveScriptException(SerializationInfo info, StreamingContext context)
            : base(info, context)
        {
            if (info != null)
            {
                _errorCode = info.GetInt32("ErrorCode");
                _errorWCode = info.GetInt16("ErrorWCode");
                _sourceContext = info.GetUInt32("SourceContext");
                _subcategory = info.GetString("Subcategory");
                _lineNumber = info.GetUInt32("LineNumber");
                _columnNumber = info.GetInt32("ColumnNumber");
                _sourceError = info.GetString("SourceError");
            }
        }

Same methods

ActiveScriptException::ActiveScriptException ( string message ) : System
ActiveScriptException::ActiveScriptException ( string message, Exception innerException ) : System