Blog.Services.Helpers.Wcf.CommentsResource.GetHeartBeat C# (CSharp) Method

GetHeartBeat() public method

public GetHeartBeat ( ) : bool
return bool
        public bool GetHeartBeat()
        {
            using (var svc = new ServiceProxyHelper<ICommentsService>("CommentsService"))
            {
                return svc.Proxy.GetHeartBeat();
            }
        }
    }