SudsWriter.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / ManagedLibraries / Remoting / MetaData / SudsWriter.cs / 1305376 / SudsWriter.cs

                            // ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
//============================================================
// 
// File:    SudsWriter.cs 
//
// Author:  Gopal Kakivaya (GopalK) 
//
// Purpose: Defines SUDSParser that parses a given SUDS document
//          and generates types defined in it.
// 
// Date:    April 01, 2000
// Revised: November 15, 2000 (Wsdl) [....] 
// 
//===========================================================
namespace System.Runtime.Remoting.MetadataServices 
{
    using System;
    using System.Runtime.Serialization;
    using System.IO; 
    using System.Reflection;
 
 	// Represents exceptions thrown by the SUDSGenerator 
    [Serializable()]
	public class SUDSGeneratorException : Exception 
	{
		internal SUDSGeneratorException(String msg)
 				: base(msg)
		{ 
 		}
 
        protected SUDSGeneratorException(SerializationInfo info, StreamingContext context): base(info, context) {} 
 	}
 
	// This class generates SUDS documents
 	internal class SUDSGenerator
	{
        WsdlGenerator wsdlGenerator = null; 
        SdlType sdlType;
		// Constructor 
		internal SUDSGenerator(Type[] types, SdlType sdlType, TextWriter output) 
 		{
			Util.Log("SUDSGenerator.SUDSGenerator 2"); 
                wsdlGenerator = new WsdlGenerator(types, sdlType, output);
                this.sdlType = sdlType;
 		}
 
 		internal SUDSGenerator(ServiceType[] serviceTypes, SdlType sdlType, TextWriter output)
		{ 
 			Util.Log("SUDSGenerator.SUDSGenerator 5 "); 
                wsdlGenerator = new WsdlGenerator(serviceTypes, sdlType, output);
                this.sdlType = sdlType; 
		}


		// Generates SUDS 
		internal void Generate()
 		{ 
			Util.Log("SUDSGenerator.Generate");			 
                wsdlGenerator.Generate();
        } 
    }
}


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK