< Summary

Class:Azure.MatchConditions
Assembly:Azure.Core
File(s):C:\Git\azure-sdk-for-net\sdk\core\Azure.Core\src\MatchConditions.cs
Covered lines:0
Uncovered lines:2
Coverable lines:2
Total lines:21
Line coverage:0% (0 of 2)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_IfMatch()-0%100%
get_IfNoneMatch()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\core\Azure.Core\src\MatchConditions.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4namespace Azure
 5{
 6    /// <summary>
 7    /// Specifies HTTP options for conditional requests.
 8    /// </summary>
 9    public class MatchConditions
 10    {
 11        /// <summary>
 12        /// Optionally limit requests to resources that have a matching ETag.
 13        /// </summary>
 014        public ETag? IfMatch { get; set; }
 15
 16        /// <summary>
 17        /// Optionally limit requests to resources that do not match the ETag.
 18        /// </summary>
 019        public ETag? IfNoneMatch { get; set; }
 20    }
 21}

Methods/Properties

get_IfMatch()
get_IfNoneMatch()