PropertyInfo.IsSpecialName Property
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.
Gets a value indicating whether the property is the special name.
public:
property bool IsSpecialName { bool get(); };
public bool IsSpecialName { get; }
member this.IsSpecialName : bool
Public ReadOnly Property IsSpecialName As Boolean
Property Value
true
if this property is the special name; otherwise, false
.
Implements
Remarks
The SpecialName
bit is set to flag members that are treated in a special way by some compilers (such as property accessors and operator overloading methods).
To get the IsSpecialName
property, first get the class Type
. From the Type
, get the PropertyInfo
. From the PropertyInfo
, get the IsSpecialName
value.
Applies to
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET