次の方法で共有


ClientTargetCollection.Add(ClientTarget) メソッド

定義

指定した ClientTarget オブジェクトをコレクションに追加します。

public:
 void Add(System::Web::Configuration::ClientTarget ^ clientTarget);
public void Add (System.Web.Configuration.ClientTarget clientTarget);
member this.Add : System.Web.Configuration.ClientTarget -> unit
Public Sub Add (clientTarget As ClientTarget)

パラメーター

clientTarget
ClientTarget

コレクションに追加する ClientTarget

次のコード例では、オブジェクトを ClientTarget コレクションに ClientTargetCollection 追加します。

コレクションを取得する方法の詳細については、クラスの概要のコード例を ClientTargetCollection 参照してください。


// Create a new ClientTarget object.
clientTarget = new ClientTarget(
  "my alias", "My User Agent"); 
  
// Add the clientTarget to 
// the collection.
clientTargets.Add(clientTarget);

// Update the configuration file.
if (!clientTargetSection.IsReadOnly())
  configuration.Save();
' Create a new ClientTarget object.
clientTarget = New ClientTarget( _
"my alias", "My User Agent")

' Add the clientTarget to 
' the collection.
clientTargets.Add(clientTarget)

' Update the configuration file.
If Not clientTargetSection.IsReadOnly() Then
    configuration.Save()
End If

注釈

クライアント ターゲットをコレクションに追加する前に、オブジェクトをClientTarget作成し、そのオブジェクトとUserAgentプロパティをAlias初期化する必要があります。

適用対象

こちらもご覧ください