| File: _generated\289\System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.g.cs | Web Access |
| Project: src\winforms\src\System.Private.Windows.Core\src\Microsoft.Private.Windows.Core.csproj (Microsoft.Private.Windows.Core) |
// <auto-generated/> #pragma warning disable #nullable enable annotations // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Diagnostics.CodeAnalysis { /// <summary> /// Specifies that the method or property will ensure that the listed field and property /// members have not-null values when returning with the specified return value condition. /// </summary> [global::System.AttributeUsage( global::System.AttributeTargets.Method | global::System.AttributeTargets.Property, Inherited = false, AllowMultiple = true)] [global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] internal sealed class MemberNotNullWhenAttribute : global::System.Attribute { /// <summary> /// Initializes the attribute with the specified return value condition and a field or property member. /// </summary> /// <param name="returnValue">The return value condition. If the method returns this value, the associated parameter will not be null.</param> /// <param name="member">The field or property member that is promised to be not-null.</param> public MemberNotNullWhenAttribute(bool returnValue, string member) { ReturnValue = returnValue; Members = new[] { member }; } /// <summary> /// Initializes the attribute with the specified return value condition and list of field and property members. /// </summary> /// <param name="returnValue">The return value condition. If the method returns this value, the associated parameter will not be null.</param> /// <param name="members">The list of field and property members that are promised to be not-null.</param> public MemberNotNullWhenAttribute(bool returnValue, params string[] members) { ReturnValue = returnValue; Members = members; } /// <summary> /// Gets the return value condition. /// </summary> public bool ReturnValue { get; } /// <summary> /// Gets field or property member names. /// </summary> public string[] Members { get; } } }