AccessCondition Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Azure SDK for .NET