Retrieves the specified profile template.
Namespace: Microsoft.Clm.Provision
Assembly: Microsoft.Clm.Provision (in microsoft.clm.provision.dll)

Usage

Visual Basic
Dim profileTemplateUuid As Guid
Dim returnValue As ProfileTemplate

returnValue = FindOperations.GetProfileTemplate(profileTemplateUuid)

Syntax

Visual Basic
Public Shared Function GetProfileTemplate ( _
		profileTemplateUuid As Guid _
) As ProfileTemplate
C#
public static ProfileTemplate GetProfileTemplate (
		Guid profileTemplateUuid
)
C++
public:
static ProfileTemplate^ GetProfileTemplate (
		Guid profileTemplateUuid
)
J#
public static ProfileTemplate GetProfileTemplate (
		Guid profileTemplateUuid
)
JScript
public static function GetProfileTemplate (
		profileTemplateUuid : Guid
) : ProfileTemplate

Parameters

profileTemplateUuid

A Guid object that identifies the profile template to be retrieved.

Return Value

The ProfileTemplate object that has the specified Guid.

Remarks

Guid objects are used to uniquely identify objects in the system.

In order for this call to succeed, the caller 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