private static IisWebSiteBindingDetails ToInternalBinding(Iis6WebSiteBinding binding) { if (binding.Port == null) { throw new ConfigurationException("Iis 6 port must not be null"); } return(new IisWebSiteBindingDetails { Hostname = binding.Hostname == null? null: binding.Hostname.Value, IPAddress = binding.IPAddress == null ? null : binding.IPAddress.Value, Port = binding.Port.Value, }); }
private static IisWebSiteBindingDetails ToInternalBinding(Iis6WebSiteBinding binding) { if (binding.Port == null) { throw new ConfigurationException("Iis 6 port must not be null"); } return new IisWebSiteBindingDetails { Hostname = binding.Hostname == null? null: binding.Hostname.Value, IPAddress = binding.IPAddress == null ? null : binding.IPAddress.Value, Port = binding.Port.Value, }; }