ExportOptions Class
Represents the options that can be set for an XsdDataContractExporter.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
| Name | Description | |
|---|---|---|
![]() | ExportOptions() | Initializes a new instance of the ExportOptions class. |
| Name | Description | |
|---|---|---|
![]() | DataContractSurrogate | Gets or sets a serialization surrogate. |
![]() | KnownTypes | Gets the collection of types that may be encountered during serialization or deserialization. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The XsdDataContractExporter is used to generate XSD schemas from a type or assembly. You can also use the XsdDataContractImporter to generate .NET Framework code from a schema document.
For more information about importing and exporting schemas, see Schema Import and Export and Exporting Schemas from Classes.
The KnownTypes property is used by the DataContractSerializer to include types that can be read in an object graph. For more information about the data contract and known types, see Data Contract Known Types.
For more information about data contracts, see Using Data Contracts.
The following example creates an instance of the ExportOptions class and adds a type (Possessions) to the collection returned by the KnownTypes property.
The XsdDataContractExporter then exports the schemas of the types, including the Possessions type added to the collection.
Available since 3.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


