2 writes to _compilParams
System.Web (2)
Compilation\CompilerTypeWithParams.cs (2)
45_compilParams = new CompilerParameters(); 47_compilParams = compilParams;
11 references to _compilParams
System.Web (11)
Compilation\CompilerTypeWithParams.cs (11)
37public CompilerParameters CompilerParameters { get { return _compilParams; } } 59copy.IncludeDebugInformation = _compilParams.IncludeDebugInformation; 60copy.TreatWarningsAsErrors = _compilParams.TreatWarningsAsErrors; 61copy.WarningLevel = _compilParams.WarningLevel; 62copy.CompilerOptions = _compilParams.CompilerOptions; 79_compilParams.WarningLevel == other._compilParams.WarningLevel && 80_compilParams.IncludeDebugInformation == other._compilParams.IncludeDebugInformation && 81_compilParams.CompilerOptions == other._compilParams.CompilerOptions;