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