public Url3(OriginI2 origin, _url._resource._render.Route route = null, Query query = null, Fragment frag = null)
 {
     _origin   = origin;
     _route    = route;
     _query    = query;
     _fragment = frag;
 }
        //public Url3(OriginI2 origin, Route route = null, Query query = null, Fragment frag = null) : this(origin, route, query, frag)
        //{
        //}

        public Url3(OriginI2 originI2, ResourceI resource1) : this(
                originI2,
                resource1.render.route,
                resource1.render.query,
                resource1.frag
                )
        {
        }
Exemple #3
0
 public bool Equals(OriginI2 x, OriginI2 y)
 {
     return(origin.Eq.Singleton.Equals(
                convert_._DelCredentialX.Op(x)
                ,
                convert_._DelCredentialX.Op(y)
                ));
     //throw new NotImplementedException();
 }
Exemple #4
0
        public bool Equals(OriginI2 x, OriginI2 y)
        {
            return(scheme.Eq.Singleton.Equals(
                       x.scheme
                       ,
                       y.scheme
                       )
                   &&
                   _origin.authority.Eq.Singleton.Equals(
                       x.authority
                       ,
                       y.authority
                       )
                   );

            throw new NotImplementedException();
        }
Exemple #5
0
        public int GetHashCode(OriginI2 obj)
        {
            return(0);

            throw new NotImplementedException();
        }
Exemple #6
0
        public int GetHashCode(OriginI2 obj)
        {
            return(origin.Eq.Singleton.GetHashCode(convert_._DelCredentialX.Op(obj)));

            throw new NotImplementedException();
        }