Example #1
0
        // Verify that folder exists
        private bool ExistsFolder(string name)
        {
            // This code is encapsulated here because it will cause an exception
            // _as the stack is constructed_ if the Interop.Feeds.dll is not installed properly.
            IFeedsManager fm = new FeedsManager();

            return(fm.ExistsFolder(name));
        }
 // Verify that folder exists
 private bool ExistsFolder(string name)
 {
     // This code is encapsulated here because it will cause an exception
     // _as the stack is constructed_ if the Interop.Feeds.dll is not installed properly.
     IFeedsManager fm = new FeedsManager();
     return fm.ExistsFolder(name);
 }