Esempio n. 1
0
 public static bool Load(string name, out Stream stream, out string contentType)
 {
     return(DefaultProvider.Load(name, out stream, out contentType));
 }
Esempio n. 2
0
 public static bool Load(string name, out Stream stream)
 {
     return(DefaultProvider.Load(name, out stream));
 }
Esempio n. 3
0
 public static bool Load(string name, out byte[] data)
 {
     return(DefaultProvider.Load(name, out data));
 }
Esempio n. 4
0
 public static bool Load(string name, out byte[] data, out string contentType)
 {
     return(DefaultProvider.Load(name, out data, out contentType));
 }