Get-AdfsRelyingPartyWebContent

Get-AdfsRelyingPartyWebContent

Gets web content objects for relying parties.

구문

Parameter Set: Default
Get-AdfsRelyingPartyWebContent [-Locale <CultureInfo> ] [-Name <String[]> ] [ <CommonParameters>]

자세한 설명

The Get-AdfsRelyingPartyWebContent cmdlet gets web content objects for relying parties. Specify a relying party by name. If you do not specify a name, the cmdlet gets all relying party web content objects. If you do not specify a locale, the cmdlet gets web content for all locales.

매개 변수

-Locale<CultureInfo>

Specifies a locale. The cmdlet gets relying party web content for the locale that you specify.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

True (ByPropertyName)

와일드카드 문자 허용 여부

false

-Name<String[]>

Specifies a name. The cmdlet gets web content for the relying party that you specify by name.

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

True (ByPropertyName)

와일드카드 문자 허용 여부

false

<CommonParameters>

이 cmdlet은 일반 매개 변수 -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer 및 -OutVariable을 지원합니다. 자세한 내용은 다음을 참조하세요. about_CommonParameters(https://go.microsoft.com/fwlink/p/?LinkID=113216).

입력

입력 유형은 cmdlet에 파이프할 수 있는 개체의 유형입니다.

출력

출력 유형은 cmdlet이 내보내는 개체의 유형입니다.

  • Microsoft.IdentityServer.Management.Resources.AdfsRelyingPartyWebContent;Microsoft.IdentityServer.Management.Resources.AdfsRelyingPartyWebContent[]

    This cmdlet generates a System.IdentityServer.Management.Resources.AdfsRelyingPartyWebContent object that represents web content of a relying party, or an array of such objects. The object includes the following properties:

    Locale: System.Globalization.CultureInfo
    Name: System.String
    ErrorPageGenericErrorMessage: System.String
    ErrorPageAuthorizationErrorMessage: System.String
    ErrorPageDeviceAuthenticationErrorMessage: System.String

예제

Example 1: Get all web content objects

This command gets web content objects for all relying parties and locales.

PS C:\> Get-AdfsRelyingPartyWebContent

Example 2: Get web content objects for a specified relying party

This command gets web content objects for the relying party named RelyingParty01 for all locales.

PS C:\> Get-AdfsRelyingPartyWebContent -Name "RelyingParty01"

Example 3: Get the web content object for a specified relying party and locale

This command gets web content objects for the relying party named RelyingParty01 for the specified locale.

PS C:\> Get-AdfsRelyingPartyWebContent -Locale en-us -Name "RelyingParty01"

관련 항목

Remove-AdfsRelyingPartyWebContent

Set-AdfsRelyingPartyWebContent