ClientBuildManagerCallback.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Compilation / ClientBuildManagerCallback.cs / 1 / ClientBuildManagerCallback.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

/************************************************************************************************************/ 
 

namespace System.Web.Compilation { 

using System;
using System.Security.Permissions;
using System.CodeDom; 
using System.CodeDom.Compiler;
using System.Web.UI; 
 

// 
// This is a callback class implemented by ClientBuildManager callers. It is used
// to receive status information about the build.
//
[PermissionSet(SecurityAction.LinkDemand, Unrestricted = true)] 
[PermissionSet(SecurityAction.InheritanceDemand, Unrestricted = true)]
public class ClientBuildManagerCallback : MarshalByRefObject { 
 
    // This includes both errors and warnings
    public virtual void ReportCompilerError(CompilerError error) {} 

    public virtual void ReportParseError(ParserError error) {}

    public virtual void ReportProgress(string message) {} 
}
 
} 

 


                        

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