HeaderAction 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
HeaderAction() |
Initializes a new instance of the HeaderAction class. |
HeaderAction(String, String, String) |
Initializes a new instance of the HeaderAction class. |
HeaderAction()
Initializes a new instance of the HeaderAction class.
public HeaderAction ();
Public Sub New ()
Applies to
HeaderAction(String, String, String)
Initializes a new instance of the HeaderAction class.
public HeaderAction (string headerActionType, string headerName, string value = default);
new Microsoft.Azure.Management.FrontDoor.Models.HeaderAction : string * string * string -> Microsoft.Azure.Management.FrontDoor.Models.HeaderAction
Public Sub New (headerActionType As String, headerName As String, Optional value As String = Nothing)
Parameters
- headerActionType
- String
Which type of manipulation to apply to the header. Possible values include: 'Append', 'Delete', 'Overwrite'
- headerName
- String
The name of the header this action will apply to.
- value
- String
The value to update the given header name with. This value is not used if the actionType is Delete.