コード例 #1
0
ファイル: TestSPWebsProxy.cs プロジェクト: killbug2004/WSProf
        public void TestGetWeb()
        {
            SPWebsProxy proxy = new SPWebsProxy(SITE_URL);
            KeyValuePair<string, string>[] webs = proxy.GetWebCollection();

            string s = proxy.GetWeb("UnitTests");
            Assert.IsNotNull(s);
        }