public ReplyAuthenticationSessionAttacher(
     AuthenticationSessionCache cache,
     AuthenticatedServerRegistry registry)
     : base(cache, registry)
 {
     address = new ThreadLocal<EndpointAddress>();
 }
 public ReplyAuthenticationSessionAttacherFactory(
     AuthenticationSessionCache cache,
     AuthenticatedServerRegistry registry)
 {
     this.cache = cache;
     this.registry = registry;
     Contract.Requires(cache != null);
     Contract.Requires(registry != null);
 }