Share via


AccessCondition Constructors

Definition

Overloads

AccessCondition()

Initializes a new instance of the AccessCondition class.

AccessCondition(String, String)

Initializes a new instance of the AccessCondition class.

AccessCondition()

Source:
AccessCondition.cs

Initializes a new instance of the AccessCondition class.

public AccessCondition ();
Public Sub New ()

Applies to

AccessCondition(String, String)

Source:
AccessCondition.cs

Initializes a new instance of the AccessCondition class.

public AccessCondition (string ifMatch = default, string ifNoneMatch = default);
new Microsoft.Azure.Search.Models.AccessCondition : string * string -> Microsoft.Azure.Search.Models.AccessCondition
Public Sub New (Optional ifMatch As String = Nothing, Optional ifNoneMatch As String = Nothing)

Parameters

ifMatch
String

Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.

ifNoneMatch
String

Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.

Applies to