/// <summary>
        /// This method maps a given type of supporte cloud storage provider into a working standard configuration. The parameters
        /// field has to be filled out as follows:
        /// DropBox - nothing
        /// BoxNet - nothing
        /// StoreGate - Use ICredentials for authentication (service will be calculated from this)
        /// SmartDriv - nothing
        /// WebDav - The URL of the webdav service
        /// </summary>
        /// <param name="configtype"></param>
        /// <param name="param"></param>
        /// <returns></returns>
        public static ICloudStorageConfiguration GetCloudConfigurationEasy(nSupportedCloudConfigurations configtype, params object[] param)
        {
            var cl = new CloudStorage();

            return(cl.GetCloudConfiguration(configtype, param));
        }
コード例 #2
0
 /// <summary>
 /// This method maps a given type of supporte cloud storage provider into a working standard configuration. The parameters
 /// field has to be filled out as follows:
 /// DropBox - nothing
 /// BoxNet - nothing
 /// StoreGate - Use ICredentials for authentication (service will be calculated from this)
 /// SmartDriv - nothing
 /// WebDav - The URL of the webdav service
 /// </summary>
 /// <param name="configtype"></param>
 /// <param name="param"></param>
 /// <returns></returns>
 public static ICloudStorageConfiguration GetCloudConfigurationEasy(nSupportedCloudConfigurations configtype, params object[] param)
 {
     CloudStorage cl = new CloudStorage();
     return cl.GetCloudConfiguration(configtype, param);            
 }