本文整理汇总了C#中ILoggingService.LogException方法的典型用法代码示例。如果您正苦于以下问题:C# ILoggingService.LogException方法的具体用法?C# ILoggingService.LogException怎么用?C# ILoggingService.LogException使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ILoggingService
的用法示例。
在下文中一共展示了ILoggingService.LogException方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SessionViewModel
public SessionViewModel(IEventAggregator eventAggregator, IWindowManager windowManager, ILoggingService loggingService)
{
EventAggregator = eventAggregator;
//EventAggregator.Publish(new NavigationEvent { PageNavigatedTo = "SessionView" });
_windowManager = windowManager;
_loggingService = loggingService;
MessageBox = new StandardMessageBox();
if (!DesignerProperties.IsInDesignTool)
{
LoadOperation lo = context.Load(context.GetSponsorswithAllPropertiesQuery(App.Event.Id));
lo.Completed += delegate
{
TrackList = context.Tracks;
if (lo.HasError)
{
ErrorWindow.CreateNew(lo.Error.Message);
_loggingService.LogException(lo.Error);
}
};
}
else
{
}
}
示例2: GenerateCode
/// <summary>
/// Generates client proxy source code using the generator specified by <paramref name="codeGeneratorName"/>.
/// </summary>
/// <param name="options">The options to use for code generation.</param>
/// <param name="parameters">The parameters required to create the <see cref="ISharedCodeService"/>.</param>
/// <param name="loggingService">The service to use for logging.</param>
/// <param name="codeGeneratorName">Optional generator name. A <c>null</c> or empty value will select the default generator.</param>
/// <returns>The generated source code or <c>null</c> if none was generated.</returns>
internal string GenerateCode(ClientCodeGenerationOptions options, SharedCodeServiceParameters parameters, ILoggingService loggingService, string codeGeneratorName)
{
Debug.Assert(options != null, "options cannot be null");
Debug.Assert(parameters != null, "parameters cannot be null");
Debug.Assert(loggingService != null, "loggingService cannot be null");
try
{
AppDomainUtilities.ConfigureAppDomain(options);
LoadOpenRiaServicesServerAssembly(parameters, loggingService);
using (SharedCodeService sharedCodeService = new SharedCodeService(parameters, loggingService))
{
CodeGenerationHost host = new CodeGenerationHost(loggingService, sharedCodeService);
return this.GenerateCode(host, options, parameters.ServerAssemblies, codeGeneratorName);
}
}
catch (Exception ex)
{
// Fatal exceptions are never swallowed or processed
if (ex.IsFatal())
{
throw;
}
// Any exception from the code generator is caught and reported, otherwise it will
// hit the MSBuild backstop and report failure of the custom build task.
// It is acceptable to report this exception and "ignore" it because we
// are running in a separate AppDomain which will be torn down immediately
// after our return.
loggingService.LogError(string.Format(CultureInfo.CurrentCulture,
Resource.ClientCodeGenDispatecher_Threw_Exception_Before_Generate,
ex.Message));
loggingService.LogException(ex);
return null;
}
}