Aracılığıyla paylaş


HttpModuleActionCollection.Add(HttpModuleAction) Yöntem

Tanım

Koleksiyona bir HttpModuleAction nesne ekler.

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

Parametreler

httpModule
HttpModuleAction

HttpModuleAction Koleksiyona eklenecek modül.

Özel durumlar

Koleksiyonda zaten var olan bir HttpModuleAction nesneyi ekleme girişiminde bulunuldu.

Örnekler

Aşağıdaki örnekte bir HttpModuleAction nesnenin nasıl oluşturulacağı ve koleksiyona nasıl ekleneceği gösterilmektedir.

// Create a new module object.

HttpModuleAction ModuleAction = 
    new HttpModuleAction("MyModuleName", 
    "MyModuleType");
// Add the module to the collection.
if (!httpModulesSection.SectionInformation.IsLocked)
{
    modulesCollection.Add(ModuleAction);
    configuration.Save();
}
' Create a new module object.
  Dim ModuleAction As New HttpModuleAction( _
  "MyModuleName", "MyModuleType")
  ' Add the module to the collection.
  If Not httpModulesSection.SectionInformation.IsLocked Then
      modulesCollection.Add(ModuleAction)
      configuration.Save()
  End If

Açıklamalar

Koleksiyona bir HttpModuleAction nesne ekler.

Şunlara uygulanır