CmisSync.Lib.Events.SuccessfulLoginEvent.SuccessfulLoginEvent C# (CSharp) Метод

SuccessfulLoginEvent() публичный Метод

Initializes a new instance of the CmisSync.Lib.Events.SuccessfulLoginEvent class.
public SuccessfulLoginEvent ( Uri url, ISession session ) : System
url System.Uri URL of the successful connection
session ISession Session instance.
Результат System
        public SuccessfulLoginEvent(Uri url, ISession session) {
            if (url == null) {
                throw new ArgumentNullException("url");
            }

            if (session == null) {
                throw new ArgumentNullException("session");
            }

            this.url = url;
            this.Session = session;
        }