コード例 #1
0
ファイル: CompressState.cs プロジェクト: Andrea/nxmpp
 internal CompressState(IXmppContext context, ServerFeatures serverFeatures)
     : base(context)
 {
     _serverFeatures = serverFeatures;
 }
コード例 #2
0
ファイル: TcpBindingState.cs プロジェクト: Andrea/nxmpp
 internal TcpBindingState(IXmppContext context, IXmppHostsLookup hostsLookup, IXmppConnectionFactory xmppConnectionFactory)
     : base(context)
 {
     _hostsLookup = hostsLookup;
     _xmppConnectionFactory = xmppConnectionFactory;
 }
コード例 #3
0
 protected ConnectionStateBase(IXmppContext context, Configuration configuration, ILog logger)
 {
     Configuration = configuration;
     Context = context;
     Logger = logger;
 }
コード例 #4
0
ファイル: SaslAuthState.cs プロジェクト: Andrea/nxmpp
 internal SaslAuthState(IXmppContext context, ServerFeatures serverFeatures)
     : base(context)
 {
     _serverFeatures = serverFeatures;
 }
コード例 #5
0
ファイル: StartAsyncState.cs プロジェクト: Andrea/nxmpp
 public StartAsyncState(IXmppContext context)
     : base(context)
 {
 }
コード例 #6
0
ファイル: ConnectionStateBase.cs プロジェクト: Andrea/nxmpp
 protected ConnectionStateBase(IXmppContext context)
 {
     Context = context;
 }
コード例 #7
0
ファイル: BindResourceState.cs プロジェクト: Andrea/nxmpp
 internal BindResourceState(IXmppContext context, ServerFeatures serverFeatures)
     : base(context)
 {
     _serverFeatures = serverFeatures;
 }
コード例 #8
0
ファイル: ConnectedState.cs プロジェクト: Andrea/nxmpp
 internal ConnectedState(IXmppContext connectionContext)
     : base(connectionContext)
 {
 }