Exemplo n.º 1
0
        internal SipGateway AddInternal(string uriScheme, string transport, string host, int port, string realm, string userName, string password)
        {
            SipGateway sipGateway = new SipGateway(this, uriScheme, transport, host, port, realm, userName, password);

            this.m_pCollection.Add(sipGateway);
            return(sipGateway);
        }
Exemplo n.º 2
0
        public SipGateway Add(string uriScheme, string transport, string host, int port, string realm, string userName, string password)
        {
            SipGateway result = this.AddInternal(uriScheme, transport, host, port, realm, userName, password);

            this.m_pOwner.SetValuesChanged();
            return(result);
        }
Exemplo n.º 3
0
 public void Remove(SipGateway value)
 {
     this.m_pCollection.Remove(value);
     this.m_pOwner.SetValuesChanged();
 }