[bcl] Add CommonCrypto to corlib, Mono.Security and System.Core.
[mono.git] / mcs / class / corlib / System / Environment.MonoTouch.opt.cs
1 #if MONOTOUCH
2
3 // this file is a shim to enable compiling monotouch profiles without mono-extensions
4 namespace System
5 {
6         public static partial class Environment
7         {
8                 public static string GetFolderPath(SpecialFolder folder, SpecialFolderOption option)
9                 {
10                         throw new NotSupportedException ();
11                 }
12
13                 internal static string UnixGetFolderPath (SpecialFolder folder, SpecialFolderOption option)
14                 {
15                         throw new NotSupportedException ();
16                 }
17         }
18 }
19
20 #endif