private void CreateStorageNode(CacheManagerNode cacheManagerNode, string cacheStorageName)
        {
            if (string.IsNullOrEmpty(cacheStorageName))
            {
                return;
            }

            CacheStorageData cacheStorageData = cacheManagerSettings.BackingStores.Get(cacheStorageName);

            if (null == cacheStorageData)
            {
                LogError(cacheManagerNode, string.Format(CultureInfo.CurrentUICulture, Resources.ExceptionNoStorageProviderDefined, cacheStorageName));
                return;
            }
            if (cacheStorageData.Type == typeof(NullBackingStore))
            {
                return;                                                                // special case
            }
            ConfigurationNode storageNode = NodeCreationService.CreateNodeByDataType(cacheStorageData.GetType(), new object[] { cacheStorageData });

            if (null == storageNode)
            {
                LogNodeMapError(cacheManagerNode, cacheStorageData.GetType());
                return;
            }
            cacheManagerNode.AddNode(storageNode);
            CreateEncryptionNode(storageNode, cacheStorageData.StorageEncryption);
        }
		private void CreateStorageNode(CacheManagerNode cacheManagerNode,string cacheStorageName)
		{
			if (string.IsNullOrEmpty(cacheStorageName)) return;

			CacheStorageData cacheStorageData = cacheManagerSettings.BackingStores.Get(cacheStorageName);
			if (null == cacheStorageData) 
			{
				LogError(cacheManagerNode, string.Format(CultureInfo.CurrentUICulture, Resources.ExceptionNoStorageProviderDefined, cacheStorageName));
				return;
			}
			if (cacheStorageData.Type == typeof(NullBackingStore)) return; // special case
			ConfigurationNode storageNode = NodeCreationService.CreateNodeByDataType(cacheStorageData.GetType(), new object[] { cacheStorageData });
			if (null == storageNode)
			{
				LogNodeMapError(cacheManagerNode, cacheStorageData.GetType());
				return;
			}
			cacheManagerNode.AddNode(storageNode);
			CreateEncryptionNode(storageNode, cacheStorageData.StorageEncryption);						
		}