I am sorry, SelectSingleNode is defined on XPathNavigator, not on XPathDocument so you need
XPathDocument doc = new XPathDocument("http://example.com/service");
string state = doc.CreateNavigator().SelectSingleNode("always-up-get-status-response/applications/application/state").Value;
Label1.Text = state;
Martin Honnen --- MVP XML
My blog