コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the ZoneUpdateParameters class with
 /// required arguments.
 /// </summary>
 public ZoneUpdateParameters(Zone zone)
     : this()
 {
     if (zone == null)
     {
         throw new ArgumentNullException("zone");
     }
     this.Zone = zone;
 }
コード例 #2
0
 private Task <List <RecordSet> > ListRecordsWithTargetAsync(Microsoft.Azure.Management.Dns.Models.Zone zone) =>
 ListRecordsWithTargetAsync(zone.Id.Split('/')[4], zone.Name);