ImportOptions Class
Represents the options that can be set on an XsdDataContractImporter.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
The XsdDataContractImporter is used to generate code from XML schema using the .NET Framework CodeDOM. To generate an XML schema from an assembly, use the XsdDataContractExporter.
For more information about importing and exporting schemas, see Schema Import and Export and Importing Schema To Generate Classes.
The following example creates an instance of the ImportOptions class and sets the EnableDataBinding and GenerateInternal properties.
Shared Function Import(ByVal schemas As XmlSchemaSet) As CodeCompileUnit Dim imp As New XsdDataContractImporter() ' The EnableDataBinding option adds a RaisePropertyChanged method to ' the generated code. The GenerateInternal causes code access to be ' set to internal. Dim iOptions As New ImportOptions() iOptions.EnableDataBinding = true iOptions.GenerateInternal = true imp.Options = IOptions If imp.CanImport(schemas) Then imp.Import(schemas) Return imp.CodeCompileUnit Else Return Nothing End If End Function
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.