According to MSDN , the GetProperties method is supported:
Supported in: Portable Class Library
Make sure you include the System.Reflection .
GetProperties() is part of the System.Reflection.TypeExtensions class (a bunch of reflection extension methods), so include a namespace and you must have access to these and similar extensions.
If it is still unavailable, try enabling System.Reflection.TypeExtensions with NuGet .
PM> Install-Package System.Reflection.TypeExtensions
source share