CallbackFileSystem.GetMountingPointEx method
Filter:
Pascal C++ (Lib) C++ (VCL) C++ (.NET) C# VB.NETOverview
Retrieves the mounting point with the given index.
Declaration
[Pascal]
procedure GetMountingPointEx(Index: integer;
var LocalLink : boolean;
var NetworkLink : boolean;
var AuthenticationId : Int64;
var MountingPoint : String);
[C++ (Lib)]
void GetMountingPointEx(const unsigned short *mountingPoint,
PBOOL LocalLink,
PBOOL NetworkLink,
PLUID AuthenticationId,
LPWSTR MountingPoint
);
[C++ (VCL)]
void __fastcall GetMountingPointEx(int Index,
bool & LocalLink,
bool & NetworkLink,
__int64 &AuthenticationId,
WideString &MountingPoint
);
[C++ (.NET)]
void GetMountingPointEx(int Index,
bool % LocalLink,
bool % NetworkLink,
Int64 %AuthenticationId,
String^ %MountingPoint);
[C#]
void GetMountingPointEx(
int Index,
ref bool LocalLink,
ref bool NetworkLink,
ref Int64 AuthenticationId,
ref String MountingPoint);
[VB.NET]
Sub GetMountingPointEx(
ByVal Index As Integer,
ByRef LocalLink As Boolean,
ByRef NetworkLink As Boolean,
ByRef AuthenticationId As Int64,
ByRef MountingPoint As String)
Parameters
- Index - The index of the mounting point in the list
- LocalLink - Specifies that the mounting point is local to certain session (identified by AuthenticationId)
- NetworkLink - Specifies that the mounting point is a network mounting point (it was created using AddNetworkMounting point)
- AuthenticationId - The Authentication ID of the user session to which the mounting point belongs.
- MountingPoint - the mounting point
Description
Use this method to get the mounting point and related information from the list of all mounting points for the given storage. Use MountingPointCountEx property to get the total number of the mounting points.
Read more about mounting points and authentication IDs.
See also
MountingPointCountEx AddMountingPointEx DeleteMountingPointEx
