FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ILSpy/ICSharpCode.Decompiler/TypeSystem/IMember.cs at master · icsharpcode/ILSpy · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
icsharpcode
/
ILSpy
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
3.7k
Star
26k
Code
Issues
172
Pull requests
13
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
ILSpy
/
ICSharpCode.Decompiler
/
TypeSystem
/
IMember.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
109 lines (96 loc) · 4.24 KB
Breadcrumbs
ILSpy
/
ICSharpCode.Decompiler
/
TypeSystem
/
IMember.cs
Copy path
File metadata and controls
109 lines (96 loc) · 4.24 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
// Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software
// without restriction, including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
// to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
#nullable enable
using
System
.
Collections
.
Generic
;
namespace
ICSharpCode
.
Decompiler
.
TypeSystem
{
/// <summary>
/// Method/field/property/event.
/// </summary>
public
interface
IMember
:
IEntity
{
/// <summary>
/// Gets the original member definition for this member.
/// Returns <c>this</c> if this is not a specialized member.
/// Specialized members are the result of overload resolution with type substitution.
/// </summary>
IMember
MemberDefinition
{
get
;
}
/// <summary>
/// Gets the return type of this member.
/// This property never returns <c>null</c>.
/// </summary>
IType
ReturnType
{
get
;
}
/// <summary>
/// Gets/Sets the declaring type (incl. type arguments, if any).
/// If this is not a specialized member, the value returned is equal to <see cref="IEntity.DeclaringTypeDefinition"/>.
/// </summary>
new
IType
DeclaringType
{
get
;
}
/// <summary>
/// Gets the interface members explicitly implemented by this member.
/// </summary>
/// <remarks>
/// For methods, equivalent to (
/// from impl in DeclaringTypeDefinition.GetExplicitInterfaceImplementations()
/// where impl.Implementation == this
/// select impl.InterfaceMethod
/// ),
/// but may be more efficient than searching the whole list.
///
/// Note that it is possible for a class to implement an interface using members in a
/// base class unrelated to that interface:
/// class BaseClass { public void Dispose() {} }
/// class C : BaseClass, IDisposable { }
/// In this case, the interface member will not show up in (BaseClass.Dispose).ImplementedInterfaceMembers,
/// so use (C).GetInterfaceImplementations() instead to handle this case.
/// </remarks>
IEnumerable
<
IMember
>
ExplicitlyImplementedInterfaceMembers
{
get
;
}
/// <summary>
/// Gets whether this member is explicitly implementing an interface.
/// </summary>
bool
IsExplicitInterfaceImplementation
{
get
;
}
/// <summary>
/// Gets if the member is virtual. Is true only if the "virtual" modifier was used, but non-virtual
/// members can be overridden, too; if they are abstract or overriding a method.
/// </summary>
bool
IsVirtual
{
get
;
}
/// <summary>
/// Gets whether this member is overriding another member.
/// </summary>
bool
IsOverride
{
get
;
}
/// <summary>
/// Gets if the member can be overridden. Returns true when the member is "abstract", "virtual" or "override" but not "sealed".
/// </summary>
bool
IsOverridable
{
get
;
}
/// <summary>
/// Gets the substitution belonging to this specialized member.
/// Returns TypeParameterSubstitution.Identity for not specialized members.
/// </summary>
TypeParameterSubstitution
Substitution
{
get
;
}
/// <summary>
/// Specializes this member with the given substitution.
/// If this member is already specialized, the new substitution is composed with the existing substition.
/// </summary>
IMember
Specialize
(
TypeParameterSubstitution
substitution
)
;
/// <summary>
/// Gets whether the members are considered equal when applying the specified type normalization.
/// </summary>
bool
Equals
(
IMember
?
obj
,
TypeVisitor
typeNormalization
)
;
}
}
Back
|
FazBrowse Home
|
New Git URL