 | BinarySerializationReflectionUtilsReflectProperties Method |
Enumerates all instance properties of the specified type who have the
SerializeMemberAttribute
applied, ordered by name.
Namespace: Slash.Serialization.BinaryAssembly: Slash.Serialization (in Slash.Serialization.dll) Version: 1.0.6018.40176
Syntaxpublic static IEnumerable<PropertyInfo> ReflectProperties(
Type type
)
Public Shared Function ReflectProperties (
type As Type
) As IEnumerable(Of PropertyInfo)
public:
static IEnumerable<PropertyInfo^>^ ReflectProperties(
Type^ type
)
static member ReflectProperties :
type : Type -> IEnumerable<PropertyInfo>
Parameters
- type
- Type: SystemType
Type to enumerate instance properties of.
Return Value
Type:
IEnumerablePropertyInfo
Instance properties of the specified type who have the
SerializeMemberAttribute
applied, ordered by name.
See Also