47 references to Static
mscorlib (33)
system\__filters.cs (2)
63
if (((criteria & MethodAttributes.
Static
) != 0) && (attr & MethodAttributes.
Static
) == 0)
system\delegate.cs (1)
241
bool isStatic = (RuntimeMethodHandle.GetAttributes(method) & MethodAttributes.
Static
) != (MethodAttributes)0;
system\reflection\Associates.cs (1)
172
bool isStatic =(methAttr & MethodAttributes.
Static
) != 0;
system\reflection\ConstructorInfo.cs (2)
587
if ((Attributes & MethodAttributes.
Static
) == MethodAttributes.
Static
)
system\reflection\emit\customattributebuilder.cs (2)
125
if ((con.Attributes & MethodAttributes.
Static
) == MethodAttributes.
Static
||
system\reflection\emit\dynamicmethod.cs (7)
86
MethodAttributes.Public | MethodAttributes.
Static
,
107
MethodAttributes.Public | MethodAttributes.
Static
,
131
MethodAttributes.Public | MethodAttributes.
Static
,
156
MethodAttributes.Public | MethodAttributes.
Static
,
207
MethodAttributes.Public | MethodAttributes.
Static
,
232
MethodAttributes.Public | MethodAttributes.
Static
,
274
if ((attributes & ~MethodAttributes.MemberAccessMask) != MethodAttributes.
Static
)
system\reflection\emit\methodbuilder.cs (2)
130
if ((attributes & MethodAttributes.
Static
) == 0)
148
(attributes & MethodAttributes.
Static
) == 0)
system\reflection\emit\modulebuilder.cs (2)
1502
if ((attributes & MethodAttributes.
Static
) == 0)
1555
if ((attributes & MethodAttributes.
Static
) == 0)
system\reflection\emit\typebuilder.cs (5)
1725
(attributes & MethodAttributes.Abstract) == 0 &&(attributes & MethodAttributes.
Static
) == 0)
1769
MethodAttributes attr = MethodAttributes.Private | MethodAttributes.
Static
| MethodAttributes.SpecialName;
1856
if ((m_iAttr & TypeAttributes.Interface) == TypeAttributes.Interface && (attributes & MethodAttributes.
Static
) != MethodAttributes.
Static
)
1879
if ((attributes & MethodAttributes.
Static
) == 0)
system\reflection\methodbase.cs (1)
226
public bool IsStatic { get { return(Attributes & MethodAttributes.
Static
) != 0; } }
system\reflection\methodinfo.cs (2)
656
if ((m_methodAttributes & MethodAttributes.
Static
) != MethodAttributes.
Static
)
system\rttype.cs (6)
332
bool isStatic = (methodAttributes & MethodAttributes.
Static
) != 0;
654
(RuntimeMethodHandle.GetAttributes(methodHandle) & MethodAttributes.
Static
) == MethodAttributes.
Static
||
662
bool isStatic = (methodAttributes & MethodAttributes.
Static
) != 0;
774
bool isStatic = (methodAttributes & MethodAttributes.
Static
) != 0;
836
bool isStatic = (methodAttributes & MethodAttributes.
Static
) != 0;
System (1)
regex\system\text\regularexpressions\RegexCompiler.cs (1)
3449
MethodAttributes attribs = MethodAttributes.Public | MethodAttributes.
Static
;
System.Activities (1)
System\Activities\Debugger\StateManager.cs (1)
609
MethodAttributes.
Static
| MethodAttributes.Public,
System.Core (2)
Microsoft\Scripting\Ast\TypeUtils.cs (1)
33
internal const MethodAttributes PublicStatic = MethodAttributes.Public | MethodAttributes.
Static
;
Microsoft\Scripting\Compiler\LambdaCompiler.Lambda.cs (1)
129
MethodBuilder mb = _typeBuilder.DefineMethod(name, MethodAttributes.Private | MethodAttributes.
Static
);
System.Data.SqlXml (1)
System\Xml\Xsl\IlGen\XmlILModule.cs (1)
188
MethodAttributes.Private | MethodAttributes.
Static
,
System.Drawing (1)
commonui\System\Drawing\ColorConverter.cs (1)
336
MethodAttributes attrs = MethodAttributes.Public | MethodAttributes.
Static
;
System.Workflow.Activities (3)
Rules\RuleValidation.cs (3)
213
get { return actualMethod.Attributes & ~MethodAttributes.
Static
; }
341
get { return actualMethod.Attributes & ~MethodAttributes.
Static
; }
668
get { return MethodAttributes.
Static
; }
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\Helper.cs (1)
56
methodAttributes |= MethodAttributes.
Static
;
System.Xml (4)
System\Xml\Serialization\CodeGenerator.cs (4)
81
InitILGeneration(argTypes, argNames, (methodBuilder.Attributes & MethodAttributes.
Static
) == MethodAttributes.
Static
);
90
InitILGeneration(argTypes, argNames, (methodBuilder.Attributes & MethodAttributes.
Static
) == MethodAttributes.
Static
);