System\Web\Services\Diagnostics\TraceUtility.cs (13)
143internal static Exception ExceptionThrow(TraceMethod method, Exception e) {
147internal static Exception ExceptionThrow(TraceEventType eventType, TraceMethod method, Exception e) {
158internal static Exception ExceptionCatch(TraceMethod method, Exception e) {
162internal static Exception ExceptionCatch(TraceEventType eventType, TraceMethod method, Exception e) {
176TraceEvent(eventType, Res.GetString(Res.TraceExceptionCought, TraceMethod.MethodId(target, method), e.GetType(), e.Message));
182internal static Exception ExceptionIgnore(TraceEventType eventType, TraceMethod method, Exception e) {
227internal static void Enter(string callId, TraceMethod caller) {
231internal static void Enter(string callId, TraceMethod caller, List<string> details) {
235internal static void Enter(string callId, TraceMethod caller, TraceMethod callDetails) {
239internal static void Enter(string callId, TraceMethod caller, TraceMethod callDetails, List<string> details) {
262internal static void Exit(string callId, TraceMethod caller) {
System\Web\Services\Protocols\WebServiceHandler.cs (9)
105TraceMethod caller = Tracing.On ? new TraceMethod(this, "Invoke") : null;
106TraceMethod userMethod = Tracing.On ? new TraceMethod(protocol.Target, protocol.MethodInfo.Name, this.parameters) : null;
150TraceMethod callbackMethod = null;
251TraceMethod callbackMethod = Tracing.On ? new TraceMethod(this, "OneWayAsyncInvoke") : null;
292TraceMethod caller = Tracing.On ? new TraceMethod(this, "BeginInvoke") : null;
293TraceMethod userMethod = Tracing.On ? new TraceMethod(protocol.Target, protocol.MethodInfo.Name, this.parameters) : null;
389TraceMethod method = Tracing.On ? new TraceMethod(this, "ProcessRequest") : null;
407TraceMethod method = Tracing.On ? new TraceMethod(this, "BeginProcessRequest") : null;
418TraceMethod method = Tracing.On ? new TraceMethod(this, "EndProcessRequest") : null;