Microsoft.WindowsAzure.Commands.Utilities.WAPackIaaS.DataContract.StaticIPAddressPool.CreateStaticIPAddressPool C# (CSharp) Method

CreateStaticIPAddressPool() private method

private CreateStaticIPAddressPool ( global dNSSearchSuffixes, global dNSServers, global wINSServers, global defaultGatewayIPAddresses, global stampId, global ID ) : StaticIPAddressPool
dNSSearchSuffixes global
dNSServers global
wINSServers global
defaultGatewayIPAddresses global
stampId global
ID global
return StaticIPAddressPool
        public static StaticIPAddressPool CreateStaticIPAddressPool(global::System.Collections.ObjectModel.ObservableCollection<string> dNSSearchSuffixes, global::System.Collections.ObjectModel.ObservableCollection<string> dNSServers, global::System.Collections.ObjectModel.ObservableCollection<string> wINSServers, global::System.Collections.ObjectModel.ObservableCollection<string> defaultGatewayIPAddresses, global::System.Guid stampId, global::System.Guid ID)
        {
            StaticIPAddressPool staticIPAddressPool = new StaticIPAddressPool();
            if ((dNSSearchSuffixes == null))
            {
                throw new global::System.ArgumentNullException("dNSSearchSuffixes");
            }
            staticIPAddressPool.DNSSearchSuffixes = dNSSearchSuffixes;
            if ((dNSServers == null))
            {
                throw new global::System.ArgumentNullException("dNSServers");
            }
            staticIPAddressPool.DNSServers = dNSServers;
            if ((wINSServers == null))
            {
                throw new global::System.ArgumentNullException("wINSServers");
            }
            staticIPAddressPool.WINSServers = wINSServers;
            if ((defaultGatewayIPAddresses == null))
            {
                throw new global::System.ArgumentNullException("defaultGatewayIPAddresses");
            }
            staticIPAddressPool.DefaultGatewayIPAddresses = defaultGatewayIPAddresses;
            staticIPAddressPool.StampId = stampId;
            staticIPAddressPool.ID = ID;
            return staticIPAddressPool;
        }
        /// <summary>
StaticIPAddressPool