Historical Content Alert

This is a historical content for Windows NT 4.0 product and is presented for informative purposes only. All content in this directory is copyrighted and owned by Microsoft.

SetNameEntry

The SetNameEntry method sets a name at a specified index of a distribution point in a CRL distribution information array.

[VB] void SetNameEntry(
  long DistPointIndex,  
  long NameIndex,  
  long NameChoice,  
  BSTR strName 
);
 
[JAVA] void SetNameEntry(
  int DistPointIndex,  
  int NameIndex,               
  int NameChoice,               
  java.lang.String strName  
);
 
[C++] HRESULT SetNameEntry(
  LONG DistPointIndex,        // in
  LONG NameIndex,             // in
  LONG NameChoice,            // in
  BSTR const strName          // in
);
 

Parameters

[VB][JAVA][C++] DistPointIndex
Specifies the index of the distribution point for which to set the name.
[VB][JAVA][C++] NameIndex
Specifies the index of the name entry to set.
[VB][JAVA][C++] NameChoice
Specifies the name choice of the name being set. The name choice indicates the type of the name so that it can be used correctly. The name choice must be one of the following values.
Name Choice Specifier Description
CERT_ALT_NAME_RFC822_NAME The name is an e-mail address.
CERT_ALT_NAME_DNS_NAME The name is an IA5 string specifying a DNS (Domain Name System) name in the format host.entity.domain.
CERT_ALT_NAME_URL The name is an IA5 string specifying a URL (Universal Resource Locator) in the format service://hostname/pathname.
CERT_ALT_NAME_REGISTERED_ID The name is a registered OID (Object Identifier).


[VB][JAVA][C++] strName
Specifies the name.

Return Values

This method does not return a value.


Share this article: