Get-AdfsRelyingPartyWebContent

Get-AdfsRelyingPartyWebContent

Gets web content objects for relying parties.

Sintaxis

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

Descripción detallada

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.

Parámetros

-Locale<CultureInfo>

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

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByPropertyName)

¿Aceptar caracteres comodín?

false

-Name<String[]>

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

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByPropertyName)

¿Aceptar caracteres comodín?

false

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

Salidas

El tipo de resultado es el tipo de objetos que emite el 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

Ejemplos

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"

Temas relacionados

Remove-AdfsRelyingPartyWebContent

Set-AdfsRelyingPartyWebContent