File: MethodImplAttribute.xml

package info (click to toggle)
monodoc 1.9-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 98,436 kB
  • ctags: 5,261
  • sloc: xml: 1,506,218; cs: 40,827; sh: 3,647; perl: 554; makefile: 476
file content (157 lines) | stat: -rwxr-xr-x 7,486 bytes parent folder | download
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<Type Name="MethodImplAttribute" FullName="System.Runtime.CompilerServices.MethodImplAttribute" FullNameSP="System_Runtime_CompilerServices_MethodImplAttribute" Maintainer="ecma">
  <TypeSignature Language="ILASM" Value=".class public sealed serializable MethodImplAttribute extends System.Attribute" />
  <TypeSignature Language="C#" Value="public sealed class MethodImplAttribute : Attribute" />
  <MemberOfLibrary>RuntimeInfrastructure</MemberOfLibrary>
  <AssemblyInfo>
    <AssemblyName>mscorlib</AssemblyName>
    <AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 ]</AssemblyPublicKey>
    <AssemblyVersion>1.0.5000.0</AssemblyVersion>
    <AssemblyVersion>2.0.0.0</AssemblyVersion>
  </AssemblyInfo>
  <ThreadingSafetyStatement>All public static members of this type are safe for multithreaded operations. No instance members are guaranteed to be thread safe.</ThreadingSafetyStatement>
  <Base>
    <BaseTypeName>System.Attribute</BaseTypeName>
  </Base>
  <Interfaces />
  <Attributes>
    <Attribute>
      <AttributeName>System.Runtime.InteropServices.ComVisible(true)</AttributeName>
    </Attribute>
    <Attribute>
      <AttributeName>System.AttributeUsage(System.AttributeTargets.Constructor | System.AttributeTargets.Method, Inherited=false)</AttributeName>
    </Attribute>
  </Attributes>
  <Docs>
    <summary>
      <para>Specifies the details of how a method is implemented.</para>
    </summary>
    <remarks>
      <para>Compilers are required to not preserve this type in metadata as a custom
      attribute. Instead, compilers are required to emit it directly in the file
      format, as described in Partition II of the CLI Specification. Metadata
      consumers, such as the Reflection API, are required to retrieve this data from
      the file format and return it as if it were a custom attribute. </para>
      <para>
        <block subset="none" type="note">This class uses the 
<see cref="T:System.Runtime.CompilerServices.MethodImplOptions" /> enumeration to describe the 
   implementation details of methods. For most languages, it is recommended
   that the notions of "forward" and "synchronized" be attached to methods using
   language syntax instead of custom attributes. </block>
      </para>
    </remarks>
  </Docs>
  <Members>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor()" />
      <MemberSignature Language="C#" Value="public MethodImplAttribute ();" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>
          <para> Constructs a new instance of the
 <see langword="MethodImplAttribute" /> class.</para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(int16 value)" />
      <MemberSignature Language="C#" Value="public MethodImplAttribute (short options);" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="options" Type="System.Int16" />
      </Parameters>
      <Docs>
        <param name="options">
          <para>A <see cref="T:System.Int16" /> that is interpreted as a bit-field that represents the desired <see cref="T:System.Runtime.CompilerServices.MethodImplOptions" /> value, which specifies a property of the method attributed by the current instance.</para>
        </param>
        <summary>
          <para> Constructs and initializes a new instance of the <see langword="MethodImplAttribute" /> class with the specified
<see cref="T:System.Int16" /> value
   interpreted as a <see cref="T:System.Runtime.CompilerServices.MethodImplOptions" /> value.</para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(valuetype System.Runtime.CompilerServices.MethodImplOptions methodImplOptions)" />
      <MemberSignature Language="C#" Value="public MethodImplAttribute (System.Runtime.CompilerServices.MethodImplOptions options);" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="options" Type="System.Runtime.CompilerServices.MethodImplOptions" />
      </Parameters>
      <Docs>
        <param name="options">A <see cref="T:System.Runtime.CompilerServices.MethodImplOptions" /> value that specifies a property of the method attributed by the current instance.</param>
        <summary>
          <para> Constructs and initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.MethodImplAttribute" /> class using the
   specified <see cref="T:System.Runtime.CompilerServices.MethodImplOptions" />
   value.</para>
        </summary>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="MethodCodeType">
      <MemberSignature Language="C#" Value="public System.Runtime.CompilerServices.MethodCodeType MethodCodeType;" />
      <MemberType>Field</MemberType>
      <ReturnValue>
        <ReturnType>System.Runtime.CompilerServices.MethodCodeType</ReturnType>
      </ReturnValue>
      <Docs>
        <summary>To be added.</summary>
        <remarks>To be added.</remarks>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
    <Member MemberName="Value">
      <MemberSignature Language="ILASM" Value=".property valuetype System.Runtime.CompilerServices.MethodImplOptions Value { public hidebysig specialname instance valuetype System.Runtime.CompilerServices.MethodImplOptions get_Value() }" />
      <MemberSignature Language="C#" Value="public System.Runtime.CompilerServices.MethodImplOptions Value { get; }" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Runtime.CompilerServices.MethodImplOptions</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para>Gets the <see cref="T:System.Runtime.CompilerServices.MethodImplOptions" /> value
   describing the method attributed by the
   current instance.</para>
        </summary>
        <value>
          <para>The <see cref="T:System.Runtime.CompilerServices.MethodImplOptions" /> value
   describing the method attributed
   by the current instance.</para>
        </value>
        <remarks>
          <para>This property is read-only.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
  </Members>
  <TypeExcluded>0</TypeExcluded>
</Type>