コード例 #1
0
        public void Log(LogEntryLevel logEntryLevel, Exception exception, LogEntryContextDictionary logEntryContext)
        {
            Contract.Requires(exception != null);
            Contract.Requires(logEntryContext != null);
            Contract.Requires(logEntryContext.Any());

            throw new NotImplementedException();
        }
コード例 #2
0
        public void Log(LogEntryLevel logEntryLevel, string message, LogEntryContextDictionary logEntryContext)
        {
            Contract.Requires(message != null);
            Contract.Requires(logEntryContext != null);
            Contract.Requires(logEntryContext.Any());

            throw new NotImplementedException();
        }