Skip to content

Commit e37c33f

Browse files
committed
Issue #764 Make IsIfNoneMatch public
1 parent a37da5b commit e37c33f

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

OData/src/System.Web.OData/OData/Formatter/ETag.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@ public object this[string key]
6161
/// </summary>
6262
public bool IsAny { get; set; }
6363

64-
internal bool IsIfNoneMatch { get; set; }
64+
/// <summary>
65+
/// Gets or sets whether If-None-Match set in the request header.
66+
/// </summary>
67+
public bool IsIfNoneMatch { get; set; }
6568

6669
internal IDictionary<string, object> ConcurrencyProperties
6770
{

OData/test/UnitTest/System.Web.OData.Test/PublicApi/System.Web.OData.PublicApi.bsl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1788,6 +1788,7 @@ public class System.Web.OData.Formatter.ETag : System.Dynamic.DynamicObject, IDy
17881788

17891789
System.Type EntityType { public get; public set; }
17901790
bool IsAny { public get; public set; }
1791+
bool IsIfNoneMatch { public get; public set; }
17911792
bool IsWellFormed { public get; public set; }
17921793
object Item [string key] { public get; public set; }
17931794

0 commit comments

Comments
 (0)