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)
37
public CompilerParameters CompilerParameters { get { return
_compilParams
; } }
59
copy.IncludeDebugInformation =
_compilParams
.IncludeDebugInformation;
60
copy.TreatWarningsAsErrors =
_compilParams
.TreatWarningsAsErrors;
61
copy.WarningLevel =
_compilParams
.WarningLevel;
62
copy.CompilerOptions =
_compilParams
.CompilerOptions;
79
_compilParams
.WarningLevel == other.
_compilParams
.WarningLevel &&
80
_compilParams
.IncludeDebugInformation == other.
_compilParams
.IncludeDebugInformation &&
81
_compilParams
.CompilerOptions == other.
_compilParams
.CompilerOptions;