コード例 #1
0
ファイル: ElmahLogEntry.cs プロジェクト: CarlosVV/sic
        public ElmahLogEntry(DbDataReader dr, IDictionary <string, int> hDict)
        {
            this.LogProvider = LogProviderType.Elmah;
            this.LogLevel    = LogLevelType.Error;
            this.Occurrences = 1;
            ElmahLogEntry current = this;

            this.setFromDataReader(dr, ref current, ref hDict);
        }
コード例 #2
0
ファイル: ElmahLogEntry.cs プロジェクト: CarlosVV/sic
 /// <summary>
 /// Sets a new instance of the Log
 /// from data reader row
 /// </summary>
 /// <param name="reader">Data Reader instance</param>
 /// <param name="prevObject">Previous instance of Log</param>
 /// <param name="hDict">Dictionary instance with key values</param>
 public void setFromDataReader(DbDataReader dr, ref ElmahLogEntry prevObject, ref IDictionary <string, int> hDict)
 {
 }