IWithHealthyHttpResponseStatusCodeRangesBeta<ReturnT>.WithHealthyHttpResponseStatusCodeRange Method
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
WithHealthyHttpResponseStatusCodeRange(String) |
Adds the specified range of the backend's HTTP response status codes that are to be considered healthy. |
WithHealthyHttpResponseStatusCodeRange(Int32, Int32) |
Adds the specified range of the backend's HTTP response status codes that are to be considered healthy. |
WithHealthyHttpResponseStatusCodeRange(String)
Adds the specified range of the backend's HTTP response status codes that are to be considered healthy.
public Microsoft.Azure.Management.Network.Fluent.ApplicationGatewayProbe.UpdateDefinition.IWithAttach<ReturnT> WithHealthyHttpResponseStatusCodeRange (string range);
abstract member WithHealthyHttpResponseStatusCodeRange : string -> Microsoft.Azure.Management.Network.Fluent.ApplicationGatewayProbe.UpdateDefinition.IWithAttach<'ReturnT>
Public Function WithHealthyHttpResponseStatusCodeRange (range As String) As IWithAttach(Of ReturnT)
Parameters
- range
- String
A number range expressed in the format "###-###", for example "200-399", which is the default.
Returns
Applies to
WithHealthyHttpResponseStatusCodeRange(Int32, Int32)
Adds the specified range of the backend's HTTP response status codes that are to be considered healthy.
public Microsoft.Azure.Management.Network.Fluent.ApplicationGatewayProbe.UpdateDefinition.IWithAttach<ReturnT> WithHealthyHttpResponseStatusCodeRange (int from, int to);
abstract member WithHealthyHttpResponseStatusCodeRange : int * int -> Microsoft.Azure.Management.Network.Fluent.ApplicationGatewayProbe.UpdateDefinition.IWithAttach<'ReturnT>
Public Function WithHealthyHttpResponseStatusCodeRange (from As Integer, to As Integer) As IWithAttach(Of ReturnT)
Parameters
- from
- Int32
The lowest number in the range.
- to
- Int32
The highest number in the range.
Returns
Applies to
Azure SDK for .NET