示例#1
0
        public void EndPoint()
        {
            ServiceEndPoint endPoint;

            Assert.That(ServiceEndPoint.TryParse(@"http://some-host.com:12345", out endPoint), Is.True);
            Assert.That(endPoint.Protocol, Is.EqualTo("http"));
            Assert.That(endPoint.Host, Is.EqualTo("some-host.com"));
            Assert.That(endPoint.Port, Is.EqualTo(12345));
        }
 public bool TryGetEndPoint(string scope, out ServiceEndPoint endPoint)
 {
     return(ServiceEndPoint.TryParse(scope, out endPoint));
 }