Editar

Share via


AssemblyCollection.Add(AssemblyInfo) Method

Definition

Adds an AssemblyInfo object to the AssemblyCollection collection.

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

Parameters

assemblyInformation
AssemblyInfo

A string value specifying the assembly reference.

Examples

The following code example demonstrates how to use the Add method. This code example is part of a larger example provided for the AssemblyCollection class.

// Create a new assembly reference.
AssemblyInfo myAssembly = 
  new AssemblyInfo("MyAssembly, Version=1.0.0000.0, " +
  "Culture=neutral, Public KeyToken=b03f5f7f11d50a3a");
// Add an assembly to the configuration.
configSection.Assemblies.Add(myAssembly);
' Create a new assembly reference.
Dim myAssembly As AssemblyInfo = New AssemblyInfo("MyAssembly, " + _
"Version=1.0.0000.0, Culture=neutral, Public KeyToken=b03f5f7f11d50a3a")
' Add an assembly to the configuration.
configSection.Assemblies.Add(myAssembly)

Remarks

Adds an AssemblyInfo object to the collection. If the assembly object is not initialized with assembly information, an exception is thrown. If the assembly object already exists in the collection, the statement is ignored.

Applies to