コード例 #1
0
ファイル: AuditAdvice.cs プロジェクト: ronmark1/ClearCanvas-1
 internal RecorderContext(IInvocation invocation, IServiceOperationRecorder recorder)
 {
     _invocation    = invocation;
     _recorder      = recorder;
     _auditLog      = new AuditLog(ProductInformation.Component, _recorder.Category);
     _operationName = string.Format("{0}.{1}", _invocation.InvocationTarget.GetType().FullName, _invocation.Method.Name);
 }
コード例 #2
0
ファイル: AuditAdvice.cs プロジェクト: m-berkani/ClearCanvas
			internal RecorderContext(IInvocation invocation, IServiceOperationRecorder recorder)
			{
				_invocation = invocation;
				_recorder = recorder;
				_auditLog = new AuditLog(ProductInformation.Component, _recorder.Category);
				_operationName = string.Format("{0}.{1}", _invocation.InvocationTarget.GetType().FullName, _invocation.Method.Name);
			}