System.Runtime.Serialization.SchemaExporter.Export C# (CSharp) Method

Export() private method

private Export ( ) : void
return void
        internal void Export()
        {
            throw new PlatformNotSupportedException();
        }

Usage Example

コード例 #1
0
        private void Export()
        {
            AddKnownTypes();
            SchemaExporter schemaExporter = new SchemaExporter(GetSchemaSet(), DataContractSet);

            schemaExporter.Export();
        }
All Usage Examples Of System.Runtime.Serialization.SchemaExporter::Export