Exemplo n.º 1
0
        public IRegistry[] AutoDetect()
        {
            var defaultReg = new BCSRemoteRegistry("https://api.bvecs.tk/v1");

            defaultReg.IsFromAutoDetect = true;
            return(new IRegistry[] { defaultReg });
        }
Exemplo n.º 2
0
        public override bool Equals(object obj)
        {
            BCSRemoteRegistry other = obj as BCSRemoteRegistry;

            if (other == null)
            {
                return(false);
            }
            return(this._apiBaseUrl == other._apiBaseUrl);
        }