Retrieves and re-distributes one-time passwords for a FIM CM request.
Namespace: Microsoft.Clm.Provision
Assembly: Microsoft.Clm.Provision (in microsoft.clm.provision.dll)

Usage

Visual Basic
Dim request As Request
Dim returnValue As ReadOnlyCollection(Of String)

returnValue = RequestOperations.DistributeSecrets(request)

Syntax

Visual Basic
Public Shared Function DistributeSecrets ( _
		request As Request _
) As ReadOnlyCollection(Of String)
C#
public static ReadOnlyCollection<string> DistributeSecrets (
		Request request
)
C++
public:
static ReadOnlyCollection<String^>^ DistributeSecrets (
		Request^ request
)
J#
public static ReadOnlyCollection<String> DistributeSecrets (
		Request request
)
JScript
public static function DistributeSecrets (
		request : Request
) : ReadOnlyCollection<String>

Parameters

request

A Request object that describes the FIM CM request for which to retrieve and re-distribute the one-time passwords.

Return Value

A collection of String objects that contain the one-time passwords.

Remarks

This method also distributes the one-time passwords according to the policy.

The following permissions are checked when this method is called:

  • The current user must have Approve permissions on the FIM CM request, or

  • The current user must have the appropriate FIM CM request permissions on the target user.

  • The current user must have Read permissions on the profile template.


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