ClientScriptItemCollection 类

定义

表示客户端脚本块的只读集合,这些脚本块在设计时包含在 Web 窗体或用户控件中。 此类不能被继承。

public ref class ClientScriptItemCollection sealed : System::Collections::ReadOnlyCollectionBase
public sealed class ClientScriptItemCollection : System.Collections.ReadOnlyCollectionBase
type ClientScriptItemCollection = class
    inherit ReadOnlyCollectionBase
Public NotInheritable Class ClientScriptItemCollection
Inherits ReadOnlyCollectionBase
继承
ClientScriptItemCollection

注解

ClientScriptItem类中的每个对象都 ClientScriptItemCollection 表示在 script 设计时 (web 窗体、web 服务器控件、内容页或母版页) 包含在文档中的块。

使用 WebFormsRootDesigner 类可设置或检查设计图面上的 Web 窗体文档中包含的客户端脚本元素。 使用方法检索 Web 文档中包含的客户端脚本元素的集合 GetClientScriptsInDocument 。 使用方法将客户端脚本元素添加到 Web 文档中 AddClientScriptToDocument

若要在运行时添加客户端脚本元素,请使用 ClientScriptManager 类。

备注

ClientScriptItemCollection类表示设计时在客户端上执行的脚本元素。 由于为 script 对象生成的元素 ClientScriptItemCollection 不在服务器上运行,因此这些元素不包含 runat="server" 特性。

构造函数

ClientScriptItemCollection(ClientScriptItem[])

初始化 ClientScriptItemCollection 类的新实例。

属性

Count

获取 ReadOnlyCollectionBase 实例中包含的元素数。

(继承自 ReadOnlyCollectionBase)
InnerList

获取 ReadOnlyCollectionBase 实例中包含的元素的列表。

(继承自 ReadOnlyCollectionBase)

方法

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetEnumerator()

返回循环访问 ReadOnlyCollectionBase 实例的枚举器。

(继承自 ReadOnlyCollectionBase)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

显式接口实现

ICollection.CopyTo(Array, Int32)

从目标数组的指定索引处开始将整个 ReadOnlyCollectionBase 复制到兼容的一维 Array

(继承自 ReadOnlyCollectionBase)
ICollection.IsSynchronized

获取一个值,该值指示对 ReadOnlyCollectionBase 对象的访问是否同步(线程安全)。

(继承自 ReadOnlyCollectionBase)
ICollection.SyncRoot

获取一个对象,该对象可用于同步对 ReadOnlyCollectionBase 对象的访问。

(继承自 ReadOnlyCollectionBase)

扩展方法

Cast<TResult>(IEnumerable)

IEnumerable 的元素强制转换为指定的类型。

OfType<TResult>(IEnumerable)

根据指定类型筛选 IEnumerable 的元素。

AsParallel(IEnumerable)

启用查询的并行化。

AsQueryable(IEnumerable)

IEnumerable 转换为 IQueryable

适用于

另请参阅