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