ReflectorIsExplicitInterfaceImplementation(PropertyInfo, PropertyInfo) Method
Determines whether the specified property is an explicit interface implementation.
Namespace: KGySoft.ReflectionAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
public static bool IsExplicitInterfaceImplementation(
PropertyInfo property,
out PropertyInfo interfaceProperty
)
Public Shared Function IsExplicitInterfaceImplementation (
property As PropertyInfo,
<OutAttribute> ByRef interfaceProperty As PropertyInfo
) As Boolean
public:
static bool IsExplicitInterfaceImplementation(
PropertyInfo^ property,
[OutAttribute] PropertyInfo^% interfaceProperty
)
static member IsExplicitInterfaceImplementation :
property : PropertyInfo *
interfaceProperty : PropertyInfo byref -> bool
- property PropertyInfo
- The property to check.
- interfaceProperty PropertyInfo
- When this method returns , then contains the property declared on the interface. This parameter is passed uninitialized.
Boolean, if the specified
property is an explicit interface implementation; otherwise,
.