Creates a CMC request.
Namespace: Microsoft.Clm
Assembly: Microsoft.Clm.Common (in microsoft.clm.common.dll)

Usage

Visual Basic
Dim instance As IServerKeyGenerator
Dim options As SkgOptions
Dim targetUser As String
Dim returnValue As String

returnValue = instance.GenerateRequest(options, targetUser)

Syntax

Visual Basic
Function GenerateRequest ( _
		options As SkgOptions, _
		targetUser As String _
) As String
C#
string GenerateRequest (
		SkgOptions options,
		string targetUser
)
C++
String^ GenerateRequest (
		SkgOptions^ options, 
		String^ targetUser
)
J#
String GenerateRequest (
		SkgOptions options, 
		String targetUser
)
JScript
function GenerateRequest (
		options : SkgOptions, 
		targetUser : String
) : String

Parameters

options

An SkgOptions object that describes the certificate request options for the server key generation request.

targetUser

A String object that contains the name of the target user for the request.

If this parameter is null or empty it should be ignored.

Return Value

A String object that contains the CMC request as a BASE64 string with a BEGIN and END header and footer.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows 2008 x64 Edition

Target Platforms

Windows XP SP3, Windows Vista SP1+, Windows 7, Windows Server 2008, Windows Server 2008 R2

See Also