3 writes to selectedPath
System.Windows.Forms (3)
winforms\Managed\System\WinForms\FolderBrowserDialog.cs (3)
141selectedPath = (value == null) ? String.Empty : value; 223selectedPath = String.Empty; 297selectedPath = Marshal.PtrToStringAuto(pszSelectedPath);
8 references to selectedPath
System.Windows.Forms (8)
winforms\Managed\System\WinForms\FolderBrowserDialog.cs (8)
127if (selectedPath == null || selectedPath.Length == 0) 129return selectedPath; 134Debug.WriteLineIf(IntSecurity.SecurityDemand.TraceVerbose, "FileIO(" + selectedPath + ") Demanded"); 135new FileIOPermission(FileIOPermissionAccess.PathDiscovery, selectedPath).Demand(); 137return selectedPath; 338if (selectedPath.Length != 0) 341UnsafeNativeMethods.SendMessage(new HandleRef(null, hwnd), (int) NativeMethods.BFFM_SETSELECTION, 1, selectedPath);