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); }
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); }
public void Remove(SipGateway value) { this.m_pCollection.Remove(value); this.m_pOwner.SetValuesChanged(); }