File: IAssemblyPostProcessor.xml

package info (click to toggle)
mono 6.14.1%2Bds2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,282,732 kB
  • sloc: cs: 11,182,461; xml: 2,850,281; ansic: 699,123; cpp: 122,919; perl: 58,604; javascript: 30,841; asm: 21,845; makefile: 19,602; sh: 10,973; python: 4,772; pascal: 925; sql: 859; sed: 16; php: 1
file content (53 lines) | stat: -rw-r--r-- 3,102 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="utf-8"?>
<Type Name="IAssemblyPostProcessor" FullName="System.Web.Compilation.IAssemblyPostProcessor">
  <TypeSignature Language="C#" Value="public interface IAssemblyPostProcessor : IDisposable" />
  <AssemblyInfo>
    <AssemblyName>System.Web</AssemblyName>
    <AssemblyVersion>2.0.0.0</AssemblyVersion>
  </AssemblyInfo>
  <Interfaces>
    <Interface>
      <InterfaceName>System.IDisposable</InterfaceName>
    </Interface>
  </Interfaces>
  <Docs>
    <since version=".NET 2.0" />
    <remarks>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>A class implementing this interface can access an assembly after it has been compiled. The <see cref="T:System.Web.Compilation.AssemblyBuilder" /> class compiles assemblies and then checks to see whether an <see cref="T:System.Web.Compilation.IAssemblyPostProcessor" /> interface has been registered in the Web configuration file. If so, the <see cref="T:System.Web.Compilation.AssemblyBuilder" /> instance calls the <see cref="M:System.Web.Compilation.IAssemblyPostProcessor.PostProcessAssembly(System.String)" /> method for the <see cref="T:System.Web.Compilation.IAssemblyPostProcessor" /> interface to perform any action after the compilation and before loading the assembly. For example, a profiler tool could implement this interface to establish probes in the assembly. </para>
      <para>When an <see cref="T:System.Web.Compilation.IAssemblyPostProcessor" /> interface is registered, the ASP.NET application and its assemblies will always be compiled in debug mode.</para>
    </remarks>
    <summary>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>Defines the method a class implements to process an assembly after the assembly has been built.</para>
    </summary>
  </Docs>
  <Members>
    <Member MemberName="PostProcessAssembly">
      <MemberSignature Language="C#" Value="public void PostProcessAssembly (string path);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="path" Type="System.String" />
      </Parameters>
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="T:System.Web.Compilation.AssemblyBuilder" /> class calls this method after the assembly has been compiled. Any actions to be taken before loading the assembly should be included in this method.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Called before the assembly is loaded to allow the implementing class to modify the assembly.</para>
        </summary>
        <param name="path">
          <attribution license="cc4" from="Microsoft" modified="false" />The path to the assembly.</param>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
  </Members>
</Type>