5 writes to IsDocumentFunctionDisabled
Microsoft.CodeAnalysis.NetAnalyzers (5)
Microsoft.NetFramework.Analyzers\DoNotUseInsecureXSLTScriptExecution.cs (5)
230env.IsDocumentFunctionDisabled = true; 242env.IsDocumentFunctionDisabled = arguments[0].Value.TryGetBoolConstantValue(out var value) 262env.IsDocumentFunctionDisabled = argRhs.TryGetBoolConstantValue(out var value) && !value; 279env.IsDocumentFunctionDisabled = true; 324env.IsDocumentFunctionDisabled = rhs.TryGetBoolConstantValue(out var value) && !value;
1 reference to IsDocumentFunctionDisabled
Microsoft.CodeAnalysis.NetAnalyzers (1)
Microsoft.NetFramework.Analyzers\DoNotUseInsecureXSLTScriptExecution.cs (1)
167isSecureSettings = env.IsDocumentFunctionDisabled && env.IsScriptDisabled;