Partager via


RequestChecker.CheckIsGuidList Method (String, String)

 

Checks whether a parameter is a GUID list.

Namespace:   Microsoft.WindowsServerSolutions.WebApi.Framework
Assembly:  Wssg.WebApi.Framework (in Wssg.WebApi.Framework.dll)

Syntax

public static List<Guid> CheckIsGuidList(
    string paramName,
    string paramValue
)
public:
static List<Guid>^ CheckIsGuidList(
    String^ paramName,
    String^ paramValue
)
Public Shared Function CheckIsGuidList (
    paramName As String,
    paramValue As String
) As List(Of Guid)

Parameters

  • paramName
    Type: System.String

    The name of the parameter to check.

Return Value

Type: System.Collections.Generic.List<Guid>

if true, contains the GUID list.

See Also

RequestChecker Class
Microsoft.WindowsServerSolutions.WebApi.Framework Namespace

Return to top