public SupportingTokenServiceCredentials()
 {
     this.tokenResolver      = new SupportingTokenSecurityTokenResolver();
     this.tokenAuthenticator = new SecurityContextSecurityTokenAuthenticator();
 }
 private SupportingTokenServiceCredentials(SupportingTokenServiceCredentials other) : base(other)
 {
     this.tokenResolver      = other.tokenResolver;
     this.tokenAuthenticator = other.tokenAuthenticator;
 }
 public SupportingTokenChannelListener(SupportingTokenBindingElement bindingElement, BindingContext context, SupportingTokenSecurityTokenResolver tokenResolver) : base(context.Binding, context.BuildInnerChannelListener <TChannel>())
 {
     this.protocolVersion = bindingElement.ProtocolVersion;
     this.tokenResolver   = tokenResolver;
 }
示例#4
0
 public SupportingTokenDuplexChannel(ChannelManagerBase manager, IDuplexChannel innerChannel, SupportingTokenSecurityTokenResolver tokenResolver, ProtocolVersion protocolVersion) : base(manager, innerChannel, tokenResolver, protocolVersion)
 {
 }
示例#5
0
 public SupportingTokenChannel(ChannelManagerBase manager, TChannel innerChannel, SupportingTokenSecurityTokenResolver tokenResolver, ProtocolVersion protocolVersion) : base(manager)
 {
     this.innerChannel    = innerChannel;
     this.tokenResolver   = tokenResolver;
     this.protocolVersion = protocolVersion;
 }
 private SupportingTokenServiceCredentials(SupportingTokenServiceCredentials other) : base(other)
 {
     this.tokenResolver = other.tokenResolver;
     this.tokenAuthenticator = other.tokenAuthenticator;
 }
 public SupportingTokenServiceCredentials()
 {
     this.tokenResolver = new SupportingTokenSecurityTokenResolver();
     this.tokenAuthenticator = new SecurityContextSecurityTokenAuthenticator();
 }