MsieJavaScriptEngine.JsException.JsException C# (CSharp) Method

JsException() protected method

Initializes a new instance of the JsException class with serialized data
protected JsException ( 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
		protected JsException(SerializationInfo info, StreamingContext context)
			: base(info, context)
		{
			if (info != null)
			{
				_engineMode = info.GetString("EngineMode");
			}
		}

Same methods

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