IDataContractSurrogate.ProcessImportedType Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Processes the type that has been generated from the imported schema.
public:
System::CodeDom::CodeTypeDeclaration ^ ProcessImportedType(System::CodeDom::CodeTypeDeclaration ^ typeDeclaration, System::CodeDom::CodeCompileUnit ^ compileUnit);
public System.CodeDom.CodeTypeDeclaration ProcessImportedType (System.CodeDom.CodeTypeDeclaration typeDeclaration, System.CodeDom.CodeCompileUnit compileUnit);
abstract member ProcessImportedType : System.CodeDom.CodeTypeDeclaration * System.CodeDom.CodeCompileUnit -> System.CodeDom.CodeTypeDeclaration
Public Function ProcessImportedType (typeDeclaration As CodeTypeDeclaration, compileUnit As CodeCompileUnit) As CodeTypeDeclaration
Parameters
- typeDeclaration
- CodeTypeDeclaration
A CodeTypeDeclaration to process that represents the type declaration generated during schema import.
- compileUnit
- CodeCompileUnit
The CodeCompileUnit that contains the other code generated during schema import.
Returns
A CodeTypeDeclaration that contains the processed type.
Remarks
The input CodeTypeDeclaration or other information in the CodeCompileUnit can be modified by the user in this method. If null
is returned, it will cause the type to not be generated. If a new CodeTypeDeclaration is returned, it will replace the original type generated.