This documentation is archived and is not being maintained.

MetaData::ConvertTypesToSchemaToFile Method (array<Type>, SdlType, String)

Converts the specified object types to XML schema, and writes it to a file that is specified by name.

Namespace:  System.Runtime.Remoting.MetadataServices
Assembly:  System.Runtime.Remoting (in System.Runtime.Remoting.dll)

public:
static void ConvertTypesToSchemaToFile(
	array<Type^>^ types, 
	SdlType sdlType, 
	String^ path
)

Parameters

types
Type: array<System::Type>
The object types to convert to XML schema.
sdlType
Type: System.Runtime.Remoting.MetadataServices::SdlType
The type of service description language to use for the XML schema.
path
Type: System::String
The path of the XML file.

NoteNote

If a file with the specified name already exists, it is overwritten.

The following code example demonstrates the use of the ConvertTypesToSchemaToFile method to write the schema definition of the specified types to a file.


#using <system.dll>
#using <system.runtime.remoting.dll>

using namespace System;
using namespace System::Runtime::Remoting::Metadata;
using namespace System::Runtime::Remoting::MetadataServices;

ref class TestClass
{
private:
   int integer;

public:
   static const double dFloatingPoint = 5.1999;

   property int Int
   {
      int get()
      {
         return integer;
      }
      void set( int value )
      {
         integer = value;
      }
   }
   void Print()
   {
      Console::WriteLine( "The double is equal to {0}.", dFloatingPoint );
   }
};

int main()
{
   array<Type^>^types = gcnew array<Type^>(4);
   String^ s = "a";
   int i = -5;
   double d = 3.1415;
   TestClass^ tc = gcnew TestClass;
   types[ 0 ] = s->GetType();
   types[ 1 ] = i.GetType();
   types[ 2 ] = d.GetType();
   types[ 3 ] = tc->GetType();
   MetaData::ConvertTypesToSchemaToFile( types, SdlType::Wsdl, "test.xml" );
   return 0;
}


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: