MsieJavaScriptEngine.JsRuntimeException.JsRuntimeException C# (CSharp) Method

JsRuntimeException() private method

Initializes a new instance of the JsRuntimeException class with serialized data
private JsRuntimeException ( 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 JsRuntimeException(SerializationInfo info, StreamingContext context)
			: base(info, context)
		{
			if (info != null)
			{
				_errorCode = info.GetString("ErrorCode");
				_category = info.GetString("Category");
				_lineNumber = info.GetInt32("LineNumber");
				_columnNumber = info.GetInt32("ColumnNumber");
				_sourceFragment = info.GetString("SourceFragment");
			}
		}

Same methods

JsRuntimeException::JsRuntimeException ( string message ) : System
JsRuntimeException::JsRuntimeException ( string message, Exception innerException ) : System
JsRuntimeException::JsRuntimeException ( string message, string engineMode ) : System
JsRuntimeException::JsRuntimeException ( string message, string engineMode, Exception innerException ) : System