ParserErrorCollection 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 ParserErrorCollection 类的新实例。
重载
ParserErrorCollection() |
初始化 ParserErrorCollection 类的新实例。 |
ParserErrorCollection(ParserError[]) |
初始化 ParserErrorCollection 类的新实例。 |
ParserErrorCollection()
初始化 ParserErrorCollection 类的新实例。
public:
ParserErrorCollection();
public ParserErrorCollection ();
Public Sub New ()
示例
下面的代码示例演示如何初始化类的 ParserErrorCollection 实例。
// Create an empty ParserErrorCollection.
ParserErrorCollection collection = new ParserErrorCollection();
' Create an empty ParserErrorCollection.
Dim collection As New ParserErrorCollection()
适用于
ParserErrorCollection(ParserError[])
初始化 ParserErrorCollection 类的新实例。
public:
ParserErrorCollection(cli::array <System::Web::ParserError ^> ^ value);
public ParserErrorCollection (System.Web.ParserError[] value);
new System.Web.ParserErrorCollection : System.Web.ParserError[] -> System.Web.ParserErrorCollection
Public Sub New (value As ParserError())
参数
- value
- ParserError[]
ParserError 类型的数组,用于指定要添加到集合中的错误。
注解
构造 ParserErrorCollection.ParserErrorCollection 函数将对象数组 ParserError 添加到集合中。