AssemblyCollection.Add(AssemblyInfo) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.