예제 #1
0
 public static IStorageAttribute GetStorage(string storageName)
 {
     if (null == storageName)
     {
         throw new ArgumentNullException("storageName");
     }
     if (!StorageCache.Exist(storageName))
     {
         return(null);
     }
     return((IStorageAttribute)StorageCache.Get(storageName));
 }