| File: src\40daf5e1cab76dff\TaintedDataAbstractValueKind.cs | Web Access |
| Project: src\sdk\src\Microsoft.CodeAnalysis.NetAnalyzers\src\Microsoft.CodeAnalysis.NetAnalyzers\Microsoft.CodeAnalysis.NetAnalyzers.csproj (Microsoft.CodeAnalysis.NetAnalyzers) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Analyzer.Utilities.FlowAnalysis.Analysis.TaintedDataAnalysis { /// <summary> /// Kind for <see cref="TaintedDataAbstractValue"/>. /// </summary> internal enum TaintedDataAbstractValueKind { /// <summary> /// Indicates the data is definitely untainted (cuz it was sanitized). /// </summary> NotTainted, /// <summary> /// Indicates that data is definitely tainted. /// </summary> Tainted, } }