ApplicationManifest.SetDebugOutput

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

ApplicationManifest.SetDebugOutput

The SetDebugOutput method indicates whether the compiled application should be displayed when ApplicationManifest.Compile is called.

Syntax

 public void SetDebugOutput( 
 Boolean debugOutput 
 ); 

Syntax

 Public Sub SetDebugOutput( _ 
 ByVal debugOutput As Boolean _  
 ) 

Parameters

  • debugOutput
    Indicates whether debug output should be generated and displayed when Compile is called. If true, the compiled code will be displayed; if false, it will be suppressed.

Return Values

This method has no return values.

Remarks

This method should be called on a newly created ApplicationManifest object before Compile is called.

Example Code

The following example sets the ApplicationManifest compiler to output the compiled message filter code for debug purposes.

ApplicationManifest myAppManifest = ApplicationManifest.CreateFromFile("C:\xml\my_app_manifest.xml");
myAppManifest.SetDebugOutput(true);
myAppManifest.ScriptOnly = true;

Requirements

Redistributable: Requires Microsoft Office Communications Server 2007 R2.

Namespace:Microsoft.Rtc.Sip

Assembly: ServerAgent (in ServerAgent.dll)

See Also

Concepts

ApplicationManifest.Compile

ApplicationManifest