Esempio n. 1
0
 public TypeReferenceProvider(TraceLoggingConfiguration configuration, ILoggerAdapterMetadataScopeProvider loggerAdapterMetadataScopeProvider, ModuleDefinition moduleDefinition)
 {
     _configuration    = configuration;
     _moduleDefinition = moduleDefinition;
     _loggerAdapterMetadataScopeProvider = loggerAdapterMetadataScopeProvider;
     _stringArray = new Lazy <TypeReference>(() => moduleDefinition.ImportReference((typeof(string[]))));
     _objectArray = new Lazy <TypeReference>(() => moduleDefinition.ImportReference(typeof(object[])));
     _type        = new Lazy <TypeReference>(() => moduleDefinition.ImportReference(typeof(Type)));
     _stopwatch   = new Lazy <TypeReference>(() => moduleDefinition.ImportReference(typeof(Stopwatch)));
     _exception   = new Lazy <TypeReference>(() => moduleDefinition.ImportReference(typeof(Exception)));
 }
 public TypeReferenceProvider(TraceLoggingConfiguration configuration, ILoggerAdapterMetadataScopeProvider loggerAdapterMetadataScopeProvider, ModuleDefinition moduleDefinition)
 {
     _configuration = configuration;
     _moduleDefinition = moduleDefinition;
     _loggerAdapterMetadataScopeProvider = loggerAdapterMetadataScopeProvider;
     _stringArray = new Lazy<TypeReference>(() => moduleDefinition.Import((typeof(string[]))));
     _objectArray = new Lazy<TypeReference>(() => moduleDefinition.Import(typeof(object[])));
     _type = new Lazy<TypeReference>(() => moduleDefinition.Import(typeof(Type)));
     _stopwatch = new Lazy<TypeReference>(() => moduleDefinition.Import(typeof(Stopwatch)));
     _exception = new Lazy<TypeReference>(() => moduleDefinition.Import(typeof(Exception)));
 }
Esempio n. 3
0
 public TypeReferenceProvider(TraceLoggingConfiguration configuration, ILoggerAdapterMetadataScopeProvider loggerAdapterMetadataScopeProvider, ModuleDefinition moduleDefinition)
 {
     _configuration    = configuration;
     _moduleDefinition = moduleDefinition;
     _loggerAdapterMetadataScopeProvider = loggerAdapterMetadataScopeProvider;
     _stringArray = new Lazy <TypeReference>(() => moduleDefinition.ImportReference((typeof(string[]))));
     _objectArray = new Lazy <TypeReference>(() => moduleDefinition.ImportReference(typeof(object[])));
     _type        = new Lazy <TypeReference>(() => moduleDefinition.ImportReference(typeof(Type)));
     _stopwatch   = new Lazy <TypeReference>(() => moduleDefinition.ImportReference(typeof(Stopwatch)));
     _exception   = new Lazy <TypeReference>(() => moduleDefinition.ImportReference(typeof(Exception)));
     _asyncStateMachineAttribute = new Lazy <TypeReference>(() => moduleDefinition.ImportReference(
                                                                typeof(System.Runtime.CompilerServices.AsyncStateMachineAttribute)));
     _task = new Lazy <TypeReference>(() => moduleDefinition.ImportReference(typeof(Task)));
 }