Example #1
0
        public virtual Channel startChannel(Session session, string profile, bool base64Encoding, string data, MessageListener listener)
        {
            StartChannelProfile p = new StartChannelProfile(profile, base64Encoding, data);
            ArrayList l = new ArrayList();

            l.Add(p);

            return ((SessionImpl) session).startChannelRequest(l, listener, true);
        }
Example #2
0
        public virtual IChannel startChannel(ISession session, string profile, bool base64Encoding, string data, IRequestHandler handler)
        {
            StartChannelProfile p = new StartChannelProfile(profile, base64Encoding, data);
            ArrayList l = new ArrayList();

            l.Add(p);

            return ((SessionImpl) session).startChannelRequest(l, handler, true);
        }
Example #3
0
		public virtual IChannel startChannel(StartChannelProfile profile, IRequestHandler handler)
		{
			ArrayList l = new ArrayList();
			
			l.Add(profile);
			
			return startChannelRequest(l, handler, false);
		}
Example #4
0
		public virtual Channel startChannel(string profile, bool base64Encoding, string data, MessageListener listener)
		{
			StartChannelProfile p = new StartChannelProfile(profile, base64Encoding, data);
			ArrayList l = new ArrayList();
			
			l.Add(p);
			
			return startChannelRequest(l, listener, false);
		}
Example #5
0
		public virtual IChannel startChannel(string profile, bool base64Encoding, string data)
		{
			StartChannelProfile p = new StartChannelProfile(profile, base64Encoding, data);

			return startChannel(p, null);
		}
Example #6
0
		public virtual Channel startChannel(string profile, MessageListener listener)
		{
			StartChannelProfile p = new StartChannelProfile(profile);
			ArrayList l = new ArrayList();
			
			l.Add(p);
			
			return startChannelRequest(l, listener, false);
		}