/// <summary> /// Initializes a new instance of the <see cref="ParserAction"/> class. /// </summary> /// <param name="actionType">A <see cref="ParserActionTypes"/> that identifies the subclass of this <see cref="ParserAction"/>.</param> protected ParserAction(ParserActionTypes actionType) { ActionType = actionType; }
/// <summary> /// Initializes a new instance of the <see cref="ParserAction"/> class. /// </summary> /// <param name="actionType">A <see cref="ParserActionTypes"/> that identifies the subclass of this <see cref="ParserAction"/>.</param> public ParserAction(ParserActionTypes actionType) { m_actionType = actionType; }