连接Exchange 的字符串

OLE DB
Customize string example values
Exchange OLE DB provider
ExOLEDB.DataSource
Specify store in the connection open command like this: conn.open "http://servername/mypublicstore"
ExDAV
Customize string example values
ADO.NET
ExDAV.ExSearcher searcher = new ExDav.ExSearcher("http://mystore.edu/myresource");
searcher.Depth = ExDAV.ExRequest.ExRequestDepths.AllChildrenWithRoot;
searcher.ExProps.Add("DAV:", "creationdate");
ExDAV.ExResponse resp = searcher.Search("WHERE \"DAV:isfolder\" = true");

System.Data.DataSet ds = resp.GetDataSet("dsMyExDataSet", "dsMyExTableName");