ClientTargetSection.ClientTargets 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取 ClientTarget 对象的集合。
public:
property System::Web::Configuration::ClientTargetCollection ^ ClientTargets { System::Web::Configuration::ClientTargetCollection ^ get(); };
[System.Configuration.ConfigurationProperty("", IsDefaultCollection=true, IsRequired=true)]
public System.Web.Configuration.ClientTargetCollection ClientTargets { get; }
[<System.Configuration.ConfigurationProperty("", IsDefaultCollection=true, IsRequired=true)>]
member this.ClientTargets : System.Web.Configuration.ClientTargetCollection
Public ReadOnly Property ClientTargets As ClientTargetCollection
属性值
包含 ClientTargetCollection 对象的 ClientTarget。
- 属性
示例
下面的代码示例演示如何获取 ClientTargets 集合。
// Get the client target collection.
ClientTargetCollection clientTargets =
clientTargetSection.ClientTargets;
' Get the client target collection.
Dim clientTargets _
As ClientTargetCollection = _
clientTargetSection.ClientTargets
注解
每个 ClientTarget 对象都包含两个标识客户端浏览器的属性,也称为用户代理。 一个属性是与由另一个属性标识的客户端浏览器关联的别名。 ASP.NET 使用此信息在页面上呈现服务器控件。