System.Runtime.Serialization.Formatters.IFieldInfo Interface

Assembly: Mscorlib.dll
Namespace: System.Runtime.Serialization.Formatters
Summary
Allows access to field names and field types of objects that support the ISerializable interface.
C# Syntax:
public interface IFieldInfo
See also:
System.Runtime.Serialization.Formatters Namespace

System.Runtime.Serialization.Formatters.IFieldInfo Member List:

Public Properties
FieldNames Read-write

Gets or sets the field names of serialized objects.
FieldTypes Read-write

Gets or sets the field types of the serialized objects.

System.Runtime.Serialization.Formatters.IFieldInfo Member Details

Property: FieldNames (read-write)
Summary
Gets or sets the field names of serialized objects.
C# Syntax:
string[] FieldNames {get; set;}
Remarks
If a name is null, a default parameter name is used.

Return to top


Property: FieldTypes (read-write)
Summary
Gets or sets the field types of the serialized objects.
C# Syntax:
Type[] FieldTypes {get; set;}

Return to top


Top of page

Copyright (c) 2002 Microsoft Corporation. All rights reserved.