GetName

The GetName method returns the name at a specified index of a CRL distribution information point.

[VB] BSTR GetName(
  long DistPointIndex,  
  long NameIndex  
);
 
[JAVA] java.lang.String GetName(
  int DistPointIndex,  
  int NameIndex               
);
 
[C++] HRESULT GetName(
  LONG DistPointIndex,        // in
  LONG NameIndex,             // in
  BSTR * pstrName             // out, return value
);
 

Parameters

[VB][JAVA][C++] DistPointIndex
Specifies the index of the distribution point for which to get a name.
[VB][JAVA][C++] NameIndex
Specifies the index of the name entry to get.
[C++] pstrName
Points to the return value. See Return Values.

Return Values

Returns the name at the specified index into the specified distribution point. The return value is a Unicode string.


© 1997 by Microsoft Corporation. All rights reserved.