internal void CopyFrom(NamedPipeConnectionPoolSettingsElement source)
 {
     if (source == null)
     {
         throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("source");
     }
     this.GroupName   = source.GroupName;
     this.IdleTimeout = source.IdleTimeout;
     this.MaxOutboundConnectionsPerEndpoint = source.MaxOutboundConnectionsPerEndpoint;
 }
        internal void CopyFrom(NamedPipeConnectionPoolSettingsElement source)
        {
            if (source == null)
            {
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("source");
            }

            this.GroupName = source.GroupName;
            this.IdleTimeout = source.IdleTimeout;
            this.MaxOutboundConnectionsPerEndpoint = source.MaxOutboundConnectionsPerEndpoint;
        }