SetRequestAttributes

The SetRequestAttributes method sets attributes in the specified request.

[VB] void SetRequestAttributes (
  BSTR strConfig,     
  long RequestId,     
  BSTR strAttributes  
);
 
[JAVA] void SetRequestAttributes (
  java.lang.String strConfig,  
  int RequestId,               
  java.lang.String strAttributes  
);
 
  BSTR const strConfig,  // in
  LONG RequestId,        // in
  BSTR const strAttributes  // in
);
 

Parameters

[VB][JAVA][C++] strConfig
Points to a valid configuration string for the certificate server. See ICertConfig::GetConfig.
[VB][JAVA][C++] RequestId
Specifies the ID of the request to set attributes for.
[VB][JAVA][C++] strAttributes
Specifies the attribute data. The literal string "\n" separates multiple attributes. There is no set limit to the number of request attributes may be added to a request.

Note In the current release, attribute names and values each must be 49 or less non-null characters in length.

Return Values

This method does not return a value.


© 1997 by Microsoft Corporation. All rights reserved.