Global:Extranet.ExternalLogin.ProviderKey

Version: - globalvalue  

Summary

Returns Provider Key of the extranet external login.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetGlobalValue("Global:Extranet.ExternalLogin.ProviderKey")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetGlobalValue("Global:Extranet.ExternalLogin.ProviderKey"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetGlobalValue("Global:Extranet.ExternalLogin.ProviderKey"); }

Outputting the template tag

<!--@Global:Extranet.ExternalLogin.ProviderKey-->

Check if globalvalue has a value

<!--@If Defined(@Global:Extranet.ExternalLogin.ProviderKey)--> Let's output this tag here: <strong><!--@Global:Extranet.ExternalLogin.ProviderKey--></strong> <!--@EndIf(@Global:Extranet.ExternalLogin.ProviderKey)-->