IssueAttachmentContract 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
IssueAttachmentContract() |
Initializes a new instance of the IssueAttachmentContract class. |
IssueAttachmentContract(String, String, String, String, String, String) |
Initializes a new instance of the IssueAttachmentContract class. |
IssueAttachmentContract()
Initializes a new instance of the IssueAttachmentContract class.
public IssueAttachmentContract ();
Public Sub New ()
Applies to
IssueAttachmentContract(String, String, String, String, String, String)
Initializes a new instance of the IssueAttachmentContract class.
public IssueAttachmentContract (string title, string contentFormat, string content, string id = default, string name = default, string type = default);
new Microsoft.Azure.Management.ApiManagement.Models.IssueAttachmentContract : string * string * string * string * string * string -> Microsoft.Azure.Management.ApiManagement.Models.IssueAttachmentContract
Public Sub New (title As String, contentFormat As String, content As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing)
Parameters
- title
- String
Filename by which the binary data will be saved.
- contentFormat
- String
Either 'link' if content is provided via an HTTP link or the MIME type of the Base64-encoded binary data provided in the 'content' property.
- content
- String
An HTTP link or Base64-encoded binary data.
- id
- String
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name
- String
The name of the resource
- type
- String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Applies to
Azure SDK for .NET