Share via


ApplicationManifest.SetDebugOutput(Boolean) method

 
Communications Server 2007 Server SDK Documentation

ApplicationManifest.SetDebugOutput

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

[C#]
public void SetDebugOutput(
Boolean debugOutput
);
FakePre-529f4297f5b8492da5607ec5ac8d1f1e-5eb858e82ac841e6bbfc6a13eb505eb3

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.
Namespace: Microsoft.Rtc.Sip
Assembly: ServerAgent (in ServerAgent.dll)

See Also

ApplicationManifest.Compile, ApplicationManifest

  
  What did you think of this topic?
  © 2007 Microsoft Corporation. All rights reserved.