System::Reflection::PropertyInfo Class Reference

Represents property information. More...

Inherits System::Reflection::MemberInfo.

Public Member Functions

ASPOSECPP_SHARED_API System::SharedPtr< System::ObjectGetValue (System::SharedPtr< System::Object > obj)
 Gets property value from specific object. More...
 
ASPOSECPP_SHARED_API System::SharedPtr< System::ObjectGetValue (System::SharedPtr< System::Object > obj, System::ArrayPtr< System::SharedPtr< System::Object >> indexer)
 Gets property value from specific object. More...
 
ASPOSECPP_SHARED_API void SetValue (System::SharedPtr< System::Object > obj, System::SharedPtr< System::Object > value)
 Sets property value to specific object. More...
 
ASPOSECPP_SHARED_API void SetValue (System::SharedPtr< System::Object > obj, System::SharedPtr< System::Object > value, System::ArrayPtr< System::SharedPtr< System::Object >> indexer)
 Sets property value to specific object. More...
 
ASPOSECPP_SHARED_API TypeInfo get_PropertyType ()
 Gets property type. More...
 
virtual ASPOSECPP_SHARED_API MemberTypes get_MemberType () const override
 Gets a MemberTypes value indicating that this member is a property. More...
 
void set_PropertyType (const TypeInfo &type)
 Sets the type of this property. More...
 
template<class PropertyType , typename ClassType >
 PropertyInfo (String name, System::SharedPtr< PropertyType >(ClassType::*get_prop_method)() const)
 Constructor. Property with only const getter. More...
 
template<class PropertyType , typename ClassType >
 PropertyInfo (String name, System::SharedPtr< PropertyType >(ClassType::*get_prop_method)())
 Constructor. Property with only non-const getter. More...
 
template<class PropertyType , typename ClassType >
 PropertyInfo (String name, void(ClassType::*set_prop_method)(System::SharedPtr< PropertyType >), System::SharedPtr< PropertyType >(ClassType::*get_prop_method)() const)
 Constructor. More...
 
template<class NullableType , typename ClassType >
 PropertyInfo (String name, void(ClassType::*set_prop_method)(System::Nullable< NullableType >), System::Nullable< NullableType >(ClassType::*get_prop_method)())
 Constructor. Nullable property with setter and getter. More...
 
template<class NullableType , typename ClassType >
 PropertyInfo (String name, void(ClassType::*set_prop_method)(System::Nullable< NullableType >), System::Nullable< NullableType >(ClassType::*get_prop_method)() const)
 Constructor. Nullable property with const getter only. More...
 
template<class PropertyType , typename ClassType >
 PropertyInfo (String name, void(ClassType::*set_prop_method)(System::SharedPtr< PropertyType >), System::SharedPtr< PropertyType >(ClassType::*get_prop_method)())
 Constructor. Object property with getter only. More...
 
template<typename ClassType >
 PropertyInfo (String name, void(ClassType::*set_prop_method)(System::String), System::String(ClassType::*get_prop_method)())
 Constructs string property information. More...
 
template<typename ClassType >
 PropertyInfo (String name, void(ClassType::*set_prop_method)(System::String), System::String(ClassType::*get_prop_method)() const)
 Constructs string property information from class with const getter. More...
 
template<typename ClassType >
 PropertyInfo (String name, void(ClassType::*set_prop_method)(System::Decimal), System::Decimal(ClassType::*get_prop_method)())
 Constructs Decimal property information. More...
 
template<typename ClassType >
 PropertyInfo (String name, void(ClassType::*set_prop_method)(System::Decimal), System::Decimal(ClassType::*get_prop_method)() const)
 Constructs Decimal property information from class with const getter. More...
 
template<typename ClassType >
 PropertyInfo (String name, void(ClassType::*set_prop_method)(bool), bool(ClassType::*get_prop_method)())
 Constructs boolean property information. More...
 
template<typename ClassType >
 PropertyInfo (String name, void(ClassType::*set_prop_method)(bool), bool(ClassType::*get_prop_method)() const)
 Constructs boolean property information from class with const getter. More...
 
template<typename ClassType >
 PropertyInfo (String name, void(ClassType::*set_prop_method)(int64_t), int64_t(ClassType::*get_prop_method)())
 Constructs int64_t property information. More...
 
template<typename ClassType >
 PropertyInfo (String name, void(ClassType::*set_prop_method)(int64_t), int64_t(ClassType::*get_prop_method)() const)
 Constructs int64_t property information from class with const getter. More...
 
- Public Member Functions inherited from System::Reflection::MemberInfo
ASPOSECPP_SHARED_API const Stringget_Name () const
 Gets member name. More...
 
ASPOSECPP_SHARED_API TypeInfo get_DeclaringType () const
 Gets declaring type. More...
 
ASPOSECPP_SHARED_API TypeInfo get_ReflectedType () const
 Gets reflected type type. More...
 
ASPOSECPP_SHARED_API const Stringget_FullName () const
 Gets member full name. Can be different in manually implemented parts. More...
 
ASPOSECPP_SHARED_API ArrayPtr< SharedPtr< Object > > GetCustomAttributes (const TypeInfo &attributeType, bool inherit=false) const
 Returns an array containing objects that represent all custom attributes applied to the type represented by the current object. More...
 
ASPOSECPP_SHARED_API ArrayPtr< SharedPtr< Object > > GetCustomAttributes (bool inherit=false) const
 Returns an array containing objects that represent all custom attributes applied to the type represented by the current object. More...
 
ASPOSECPP_SHARED_API void AddAttribute (const ObjectPtr &attribute)
 Adds attribute to collection. More...
 
- Public Member Functions inherited from System::Object
ASPOSECPP_SHARED_API Object ()
 Creates object. Initializes all internal data structures. More...
 
virtual ASPOSECPP_SHARED_API ~Object ()
 Destroys object. Frees all internal data structures. More...
 
ASPOSECPP_SHARED_API Object (Object const &x)
 Copy constructor. Doesn't copy anything, really, just initializes new object and enables copy constructing subclasses. More...
 
Objectoperator= (Object const &x)
 Assignment operator. Doesn't copy anything, really, just initializes new object and enables copy constructing subclasses. More...
 
ObjectSharedRefAdded ()
 Increments shared reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
int SharedRefRemovedSafe ()
 Decrements and returns shared reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
int RemovedSharedRefs (int count)
 Decreases shared reference count by specified value. More...
 
Detail::SmartPtrCounter * WeakRefAdded ()
 Increments weak reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
void WeakRefRemoved ()
 Decrements weak reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
Detail::SmartPtrCounter * GetCounter ()
 Gets reference counter data structure associated with the object. More...
 
int SharedCount () const
 Gets current value of shared reference counter. More...
 
ASPOSECPP_SHARED_API void Lock ()
 Implements C# lock() statement locking. Call directly or use LockContext sentry object. More...
 
ASPOSECPP_SHARED_API void Unlock ()
 Implements C# lock() statement unlocking. Call directly or use LockContext sentry object. More...
 
virtual ASPOSECPP_SHARED_API bool Equals (ptr obj)
 Compares objects using C# Object.Equals semantics. More...
 
virtual ASPOSECPP_SHARED_API int32_t GetHashCode () const
 Analog of C# Object.GetHashCode() method. Enables hashing of custom objects. More...
 
virtual ASPOSECPP_SHARED_API String ToString () const
 Analog of C# Object.ToString() method. Enables converting custom objects to string. More...
 
virtual ASPOSECPP_SHARED_API ptr MemberwiseClone () const
 Analog of C# Object.MemberwiseClone() method. Enables cloning custom types. More...
 
virtual ASPOSECPP_SHARED_API const TypeInfoGetType () const
 Gets actual type of object. Analog of C# System.Object.GetType() call. More...
 
virtual ASPOSECPP_SHARED_API bool Is (const TypeInfo &targetType) const
 Check if object represents an instance of type described by targetType. Analog of C# 'is' operator. More...
 
virtual ASPOSECPP_SHARED_API void SetTemplateWeakPtr (uint32_t argument)
 Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. More...
 
virtual ASPOSECPP_SHARED_API bool FastCast (const Details::FastRttiBase &helper, void **out_ptr) const
 For internal purposes only. More...
 
template<>
bool Equals (float const &objA, float const &objB)
 Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. More...
 
template<>
bool Equals (double const &objA, double const &objB)
 Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. More...
 
template<>
bool ReferenceEquals (String const &str, std::nullptr_t)
 Specialization of Object::ReferenceEquals for case of string and nullptr. More...
 
template<>
bool ReferenceEquals (String const &str1, String const &str2)
 Specialization of Object::ReferenceEquals for case of strings. More...
 

Protected Attributes

std::function< void(System::Object::ptr, System::Object::ptr)> set_method
 
std::function< System::Object::ptr(System::Object::ptr)> get_method
 
TypeInfo m_property_type
 
- Protected Attributes inherited from System::Reflection::MemberInfo
String m_full_name
 Member full name. More...
 
String m_name
 Member name. More...
 
TypeInternal m_type_internal
 Declaring type description. More...
 
ObjectVector m_attributes
 Type's attributes. More...
 

Additional Inherited Members

- Public Types inherited from System::Reflection::MemberInfo
typedef SharedPtr< ObjectObjectPtr
 Alias for a shared pointer to Object. More...
 
- Public Types inherited from System::Object
typedef SmartPtr< Objectptr
 Alias for smart pointer type. More...
 
- Static Public Member Functions inherited from System::Object
static bool ReferenceEquals (ptr const &objA, ptr const &objB)
 Compares objects by reference. More...
 
template<typename T >
static std::enable_if<!IsSmartPtr< T >::value, bool >::type ReferenceEquals (T const &objA, T const &objB)
 Compares objects by reference. More...
 
template<typename T >
static std::enable_if<!IsSmartPtr< T >::value, bool >::type ReferenceEquals (T const &objA, std::nullptr_t)
 Reference-compares value type object with nullptr. More...
 
template<typename T1 , typename T2 >
static std::enable_if< IsSmartPtr< T1 >::value &&IsSmartPtr< T2 >::value, bool >::type Equals (T1 const &objA, T2 const &objB)
 Compares reference type objects in C# style. More...
 
template<typename T1 , typename T2 >
static std::enable_if<!IsSmartPtr< T1 >::value &&!IsSmartPtr< T2 >::value, bool >::type Equals (T1 const &objA, T2 const &objB)
 Compares value type objects in C# style. More...
 
static const TypeInfoType ()
 Implements C# typeof(System.Object) construct. More...
 
- Protected Types inherited from System::Reflection::MemberInfo
typedef std::vector< ObjectPtrObjectVector
 Alias for a vector of shared pointers to Object. More...
 
- Protected Member Functions inherited from System::Reflection::MemberInfo
ASPOSECPP_SHARED_API MemberInfo (const String &full_name)
 Constructor. More...
 

Detailed Description

Represents property information.

Constructor & Destructor Documentation

◆ PropertyInfo() [1/14]

template<class PropertyType , typename ClassType >
System::Reflection::PropertyInfo::PropertyInfo ( String  name,
System::SharedPtr< PropertyType >(ClassType::*)() const  get_prop_method 
)
inline

Constructor. Property with only const getter.

Template Parameters
PropertyTypeType of the property.
ClassTypeType of the class the property belongs to.
Parameters
nameProperty name.
get_prop_methodGetter method.

◆ PropertyInfo() [2/14]

template<class PropertyType , typename ClassType >
System::Reflection::PropertyInfo::PropertyInfo ( String  name,
System::SharedPtr< PropertyType >(ClassType::*)()  get_prop_method 
)
inline

Constructor. Property with only non-const getter.

Template Parameters
PropertyTypeType of the property.
ClassTypeType of the class the property belongs to.
Parameters
nameProperty name.
get_prop_methodGetter method.

◆ PropertyInfo() [3/14]

template<class PropertyType , typename ClassType >
System::Reflection::PropertyInfo::PropertyInfo ( String  name,
void(ClassType::*)(System::SharedPtr< PropertyType >)  set_prop_method,
System::SharedPtr< PropertyType >(ClassType::*)() const  get_prop_method 
)
inline

Constructor.

Template Parameters
PropertyTypeType of the property.
ClassTypeType of the class the property belongs to.
Parameters
nameProperty name.
set_prop_methodSetter method.
get_prop_methodGetter method.

◆ PropertyInfo() [4/14]

template<class NullableType , typename ClassType >
System::Reflection::PropertyInfo::PropertyInfo ( String  name,
void(ClassType::*)(System::Nullable< NullableType >)  set_prop_method,
System::Nullable< NullableType >(ClassType::*)()  get_prop_method 
)
inline

Constructor. Nullable property with setter and getter.

Template Parameters
PropertyTypeType of the property.
ClassTypeType of the class the property belongs to.
Parameters
nameProperty name.
set_prop_methodSetter method.
get_prop_methodGetter method.

◆ PropertyInfo() [5/14]

template<class NullableType , typename ClassType >
System::Reflection::PropertyInfo::PropertyInfo ( String  name,
void(ClassType::*)(System::Nullable< NullableType >)  set_prop_method,
System::Nullable< NullableType >(ClassType::*)() const  get_prop_method 
)
inline

Constructor. Nullable property with const getter only.

Template Parameters
PropertyTypeType of the property.
ClassTypeType of the class the property belongs to.
Parameters
nameProperty name.
set_prop_methodSetter method.
get_prop_methodGetter method.

◆ PropertyInfo() [6/14]

template<class PropertyType , typename ClassType >
System::Reflection::PropertyInfo::PropertyInfo ( String  name,
void(ClassType::*)(System::SharedPtr< PropertyType >)  set_prop_method,
System::SharedPtr< PropertyType >(ClassType::*)()  get_prop_method 
)
inline

Constructor. Object property with getter only.

Template Parameters
PropertyTypeType of the property.
ClassTypeType of the class the property belongs to.
Parameters
nameProperty name.
set_prop_methodSetter method.
get_prop_methodGetter method.

◆ PropertyInfo() [7/14]

template<typename ClassType >
System::Reflection::PropertyInfo::PropertyInfo ( String  name,
void(ClassType::*)(System::String set_prop_method,
System::String(ClassType::*)()  get_prop_method 
)
inline

Constructs string property information.

Template Parameters
ClassTypeType of the class the property belongs to.
Parameters
nameProperty name.
set_prop_methodSetter method.
get_prop_methodGetter method.

◆ PropertyInfo() [8/14]

template<typename ClassType >
System::Reflection::PropertyInfo::PropertyInfo ( String  name,
void(ClassType::*)(System::String set_prop_method,
System::String(ClassType::*)() const  get_prop_method 
)
inline

Constructs string property information from class with const getter.

Template Parameters
ClassTypeType of the class the property belongs to.
Parameters
nameProperty name.
set_prop_methodSetter method.
get_prop_methodGetter method.

◆ PropertyInfo() [9/14]

template<typename ClassType >
System::Reflection::PropertyInfo::PropertyInfo ( String  name,
void(ClassType::*)(System::Decimal set_prop_method,
System::Decimal(ClassType::*)()  get_prop_method 
)
inline

Constructs Decimal property information.

Template Parameters
ClassTypeType of the class the property belongs to.
Parameters
nameProperty name.
set_prop_methodSetter method.
get_prop_methodGetter method.

◆ PropertyInfo() [10/14]

template<typename ClassType >
System::Reflection::PropertyInfo::PropertyInfo ( String  name,
void(ClassType::*)(System::Decimal set_prop_method,
System::Decimal(ClassType::*)() const  get_prop_method 
)
inline

Constructs Decimal property information from class with const getter.

Template Parameters
ClassTypeType of the class the property belongs to.
Parameters
nameProperty name.
set_prop_methodSetter method.
get_prop_methodGetter method.

◆ PropertyInfo() [11/14]

template<typename ClassType >
System::Reflection::PropertyInfo::PropertyInfo ( String  name,
void(ClassType::*)(bool)  set_prop_method,
bool(ClassType::*)()  get_prop_method 
)
inline

Constructs boolean property information.

Template Parameters
ClassTypeType of the class the property belongs to.
Parameters
nameProperty name.
set_prop_methodSetter method.
get_prop_methodGetter method.

◆ PropertyInfo() [12/14]

template<typename ClassType >
System::Reflection::PropertyInfo::PropertyInfo ( String  name,
void(ClassType::*)(bool)  set_prop_method,
bool(ClassType::*)() const  get_prop_method 
)
inline

Constructs boolean property information from class with const getter.

Template Parameters
ClassTypeType of the class the property belongs to.
Parameters
nameProperty name.
set_prop_methodSetter method.
get_prop_methodGetter method.

◆ PropertyInfo() [13/14]

template<typename ClassType >
System::Reflection::PropertyInfo::PropertyInfo ( String  name,
void(ClassType::*)(int64_t)  set_prop_method,
int64_t(ClassType::*)()  get_prop_method 
)
inline

Constructs int64_t property information.

Template Parameters
ClassTypeType of the class the property belongs to.
Parameters
nameProperty name.
set_prop_methodSetter method.
get_prop_methodGetter method.

◆ PropertyInfo() [14/14]

template<typename ClassType >
System::Reflection::PropertyInfo::PropertyInfo ( String  name,
void(ClassType::*)(int64_t)  set_prop_method,
int64_t(ClassType::*)() const  get_prop_method 
)
inline

Constructs int64_t property information from class with const getter.

Template Parameters
ClassTypeType of the class the property belongs to.
Parameters
nameProperty name.
set_prop_methodSetter method.
get_prop_methodGetter method.

Member Function Documentation

◆ get_MemberType()

virtual ASPOSECPP_SHARED_API MemberTypes System::Reflection::PropertyInfo::get_MemberType ( ) const
overridevirtual

Gets a MemberTypes value indicating that this member is a property.

Implements System::Reflection::MemberInfo.

◆ get_PropertyType()

ASPOSECPP_SHARED_API TypeInfo System::Reflection::PropertyInfo::get_PropertyType ( )

Gets property type.

Returns
Type of the property.

◆ GetValue() [1/2]

ASPOSECPP_SHARED_API System::SharedPtr<System::Object> System::Reflection::PropertyInfo::GetValue ( System::SharedPtr< System::Object obj)

Gets property value from specific object.

Parameters
objObject to read property from.
Returns
Value of specified property for specified object.

◆ GetValue() [2/2]

ASPOSECPP_SHARED_API System::SharedPtr<System::Object> System::Reflection::PropertyInfo::GetValue ( System::SharedPtr< System::Object obj,
System::ArrayPtr< System::SharedPtr< System::Object >>  indexer 
)

Gets property value from specific object.

Parameters
objObject to read property from.
indexerThese are optional index values for indexed properties. For non-indexed properties, this value should be null.
Returns
Value of specified property for specified object.

◆ set_PropertyType()

void System::Reflection::PropertyInfo::set_PropertyType ( const TypeInfo type)
inline

Sets the type of this property.

Parameters
typeproperty type

◆ SetValue() [1/2]

ASPOSECPP_SHARED_API void System::Reflection::PropertyInfo::SetValue ( System::SharedPtr< System::Object obj,
System::SharedPtr< System::Object value 
)

Sets property value to specific object.

Parameters
objObject to write property to.
valueValue of property to set.

◆ SetValue() [2/2]

ASPOSECPP_SHARED_API void System::Reflection::PropertyInfo::SetValue ( System::SharedPtr< System::Object obj,
System::SharedPtr< System::Object value,
System::ArrayPtr< System::SharedPtr< System::Object >>  indexer 
)

Sets property value to specific object.

Parameters
objObject to write property to.
indexerThese are optional index values for indexed properties. For non-indexed properties, this value should be null.
valueValue of property to set.

Member Data Documentation

◆ get_method

std::function<System::Object::ptr(System::Object::ptr)> System::Reflection::PropertyInfo::get_method
protected

◆ m_property_type

TypeInfo System::Reflection::PropertyInfo::m_property_type
protected

◆ set_method

std::function<void(System::Object::ptr, System::Object::ptr)> System::Reflection::PropertyInfo::set_method
protected