/// <summary> /// Initializes a new instance of the <see cref="CreateCloudNetworkRequest"/> /// class with the specified details. /// </summary> /// <param name="details">The details of the request.</param> /// <exception cref="ArgumentNullException">If <paramref name="details"/> is <see langword="null"/>.</exception> public CreateCloudNetworkRequest(CreateCloudNetworksDetails details) { if (details == null) throw new ArgumentNullException("details"); Details = details; }
/// <summary> /// Initializes a new instance of the <see cref="CreateCloudNetworkRequest"/> /// class with the specified details. /// </summary> /// <param name="details">The details of the request.</param> /// <exception cref="ArgumentNullException">If <paramref name="details"/> is <c>null</c>.</exception> public CreateCloudNetworkRequest(CreateCloudNetworksDetails details) { if (details == null) { throw new ArgumentNullException("details"); } Details = details; }