コード例 #1
0
 public EnvironmentInfo()
 {
     ExtendedData = new ExtendedDataDictionary();
 }
コード例 #2
0
 public ErrorInfo()
 {
     ExtendedData = new ExtendedDataDictionary();
     StackTrace   = new StackFrameCollection();
 }
コード例 #3
0
 public Parameter()
 {
     ExtendedData     = new ExtendedDataDictionary();
     GenericArguments = new GenericArguments();
 }
コード例 #4
0
ファイル: Method.cs プロジェクト: xvoices/Exceptionless
 public Method()
 {
     ExtendedData     = new ExtendedDataDictionary();
     GenericArguments = new GenericArguments();
     Parameters       = new ParameterCollection();
 }
コード例 #5
0
 public Module()
 {
     ExtendedData = new ExtendedDataDictionary();
 }
コード例 #6
0
ファイル: RequestInfo.cs プロジェクト: xvoices/Exceptionless
 public RequestInfo()
 {
     ExtendedData = new ExtendedDataDictionary();
     Cookies      = new Dictionary <string, string>();
     QueryString  = new Dictionary <string, string>();
 }