示例#1
0
        public IIpV6Client Represent(IRepresentationContext context = null)
        {
            if (context == null)
            {
                context = new RepresentationContext();
            }

            return(RepresentFactory.CreateIpClient(this, context));
        }
示例#2
0
        public ICity Represent(IRepresentationContext context = null)
        {
            if (context == null)
            {
                context = new RepresentationContext();
            }

            return(RepresentFactory.CreateCity(this, context));
        }
示例#3
0
 public ILocation Represent(IRepresentationContext context = null)
 {
     return(RepresentFactory.CreateLocation(this, context));
 }