CallbackFileSystem.DeleteMountingPointEx method
Filter:
Pascal C++ (Lib) C++ (VCL) C++ (.NET) C# VB.NETOverview
Deletes a mounting point for the storage.
Declaration
[Pascal]
procedure DeleteMountingPointEx(MountingPoint: WideString;
SessionId : LongWord;
AuthenticationId : PInt64);
procedure DeleteMountingPointEx(Index: integer);
[C++ (Lib)]
void DeleteMountingPointEx(const unsigned short *mountingPoint,
DWORD SessionId,
PLUID AuthenticationId);
void DeleteMountingPointEx(long Index);
[C++ (VCL)]
void __fastcall DeleteMountingPointEx(WideString MountingPoint,
unsigned long SessionId,
__int64 * AuthenticationId);
void __fastcall DeleteMountingPointEx(long Index);
[C++ (.NET)]
void DeleteMountingPointEx(String^ MountingPoint,
UInt32 SessionId,
LUID AuthenticationId);
void DeleteMountingPointEx(long Index);
[C#]
void DeleteMountingPointEx(String MountingPoint,
UInt32 SessionId,
LUID AuthenticationId);
void DeleteMountingPointEx(int Index);
[VB.NET]
Sub DeleteMountingPointEx(ByVal MountingPoint As String,
SessionId As UInt32,
AuthenticationId As LUID)
Sub DeleteMountingPointEx(ByVal Index As Integer)
Parameters
- MountingPoint - the mounting point without "\\.\" part.
- SessionId - Session ID returned by GetMountingPointEx method
- AuthenticationId - Authentication ID as returned by GetMountingPointEx method or specified in AddMountingPointEx or AddNetworkmountingPoint
Description
Use this method to delete a mounting point which has been mounted using AddMountingPoint or AddMountingPointEx. Note, that each volume must have at least one mounting point.
Read more about mounting points.
See also
MountingPointCountEx AddMountingPointEx AddNetworkMountingPoint GetMountingPointEx
