Sdílet prostřednictvím


Dns.RecordSetsDeleteViaIdentity Method

Definition

Deletes a record set from a DNS zone. This operation cannot be undone. Record sets of type SOA cannot be deleted (they are deleted when the DNS zone is deleted).

public System.Threading.Tasks.Task RecordSetsDeleteViaIdentity (string viaIdentity, string ifMatch, Func<System.Net.Http.HttpResponseMessage,System.Threading.Tasks.Task> onOk, Func<System.Net.Http.HttpResponseMessage,System.Threading.Tasks.Task> onNoContent, Func<System.Net.Http.HttpResponseMessage,System.Threading.Tasks.Task<Microsoft.Azure.PowerShell.Cmdlets.Dns.Models.Api20230701Preview.ICloudError>,System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.Dns.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.Dns.Runtime.ISendAsync sender);
member this.RecordSetsDeleteViaIdentity : string * string * Func<System.Net.Http.HttpResponseMessage, System.Threading.Tasks.Task> * Func<System.Net.Http.HttpResponseMessage, System.Threading.Tasks.Task> * Func<System.Net.Http.HttpResponseMessage, System.Threading.Tasks.Task<Microsoft.Azure.PowerShell.Cmdlets.Dns.Models.Api20230701Preview.ICloudError>, System.Threading.Tasks.Task> * Microsoft.Azure.PowerShell.Cmdlets.Dns.Runtime.IEventListener * Microsoft.Azure.PowerShell.Cmdlets.Dns.Runtime.ISendAsync -> System.Threading.Tasks.Task
Public Function RecordSetsDeleteViaIdentity (viaIdentity As String, ifMatch As String, onOk As Func(Of HttpResponseMessage, Task), onNoContent As Func(Of HttpResponseMessage, Task), onDefault As Func(Of HttpResponseMessage, Task(Of ICloudError), Task), eventListener As IEventListener, sender As ISendAsync) As Task

Parameters

viaIdentity
String
ifMatch
String

The etag of the record set. Omit this value to always delete the current record set. Specify the last-seen etag value to prevent accidentally deleting any concurrent changes.

onOk
Func<HttpResponseMessage,Task>

a delegate that is called when the remote service returns 200 (OK).

onNoContent
Func<HttpResponseMessage,Task>

a delegate that is called when the remote service returns 204 (NoContent).

onDefault
Func<HttpResponseMessage,Task<ICloudError>,Task>

a delegate that is called when the remote service returns default (any response code not handled elsewhere).

eventListener
IEventListener

an IEventListener instance that will receive events.

sender
ISendAsync

an instance of an Microsoft.Azure.PowerShell.Cmdlets.Dns.Runtime.ISendAsync pipeline to use to make the request.

Returns

A Task that will be complete when handling of the response is completed.

Applies to