28 references to SpecialFolder
ComSvcConfig (1)
ComplusEndpointConfigContainer.cs (1)
423programFiles = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);
mscorlib (7)
system\environment.cs (6)
1445public static string GetFolderPath(SpecialFolder folder) { 1446if (!Enum.IsDefined(typeof(SpecialFolder), folder)) 1456public static string GetFolderPath(SpecialFolder folder, SpecialFolderOption option) { 1457if (!Enum.IsDefined(typeof(SpecialFolder),folder)) 1469internal static string UnsafeGetFolderPath(SpecialFolder folder) 1477private static string InternalGetFolderPath(SpecialFolder folder, SpecialFolderOption option, bool suppressSecurityChecks = false)
system\timezoneinfo.cs (1)
2591string system32 = Environment.UnsafeGetFolderPath(Environment.SpecialFolder.System);
PresentationFramework (1)
src\Framework\MS\Internal\AppModel\XappLauncher.cs (1)
1128Environment.GetFolderPath(Environment.SpecialFolder.System),
System.Configuration (2)
System\Configuration\ClientConfigPaths.cs (2)
193string roamingFolderPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData); 199string localFolderPath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
System.IdentityModel.Selectors (3)
infocard\client\System\IdentityModel\Selectors\CardSpaceShim.cs (3)
244Environment.GetFolderPath(Environment.SpecialFolder.System), 275Environment.GetFolderPath(Environment.SpecialFolder.System), 296Environment.GetFolderPath(Environment.SpecialFolder.System),
System.Web (1)
Util\PathUtil.cs (1)
18return Environment.GetFolderPath(Environment.SpecialFolder.System);
System.Windows.Forms (12)
winforms\Managed\System\WinForms\Application.cs (3)
251return GetDataPath(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData)); 417return GetDataPath(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)); 709return GetDataPath(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData));
winforms\Managed\System\WinForms\FolderBrowserDialog.cs (6)
36private Environment.SpecialFolder rootFolder; 152DefaultValue(System.Environment.SpecialFolder.Desktop), 158public System.Environment.SpecialFolder RootFolder 169if (!Enum.IsDefined(typeof(System.Environment.SpecialFolder), value)) 171throw new InvalidEnumArgumentException("value", (int)value, typeof(System.Environment.SpecialFolder)); 221rootFolder = System.Environment.SpecialFolder.Desktop;
winforms\Managed\System\WinForms\SpecialFolderEnumConverter.cs (2)
25if (values[i] is System.Environment.SpecialFolder && 26values[i].Equals(System.Environment.SpecialFolder.Personal)) {
winforms\Managed\System\WinForms\WebBrowser.cs (1)
652string mshtmlPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.System), "mshtml.dll");
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Themes.cs (1)
306path = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);