次の方法で共有


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>

このコマンドレットは次の共通パラメーターをサポートします。-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、-OutVariable.詳細については、以下を参照してください。 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

出力

出力型は、コマンドレットによって生成されるオブジェクトの型です。

  • 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