|   | AuthenticationOptionsExtensionsGetFullLogoutPath(AuthenticationOptions, String) Method | 
        
        
            Gets full path to 
LogoutPage,
            evaluating leading 
~ character as the given base path.
            
 GSF.Web (in GSF.Web.dll) Version: 2.4.257-beta
 Syntax
Syntax<ExtensionAttribute>
Public Shared Function GetFullLogoutPath ( 
	options As AuthenticationOptions,
	basePath As String
) As String
public:
[ExtensionAttribute]
static String^ GetFullLogoutPath(
	AuthenticationOptions^ options, 
	String^ basePath
)
[<ExtensionAttribute>]
static member GetFullLogoutPath : 
        options : AuthenticationOptions * 
        basePath : string -> string GSF.Web.Security.AuthenticationOptionsExtensions.GetFullLogoutPath = function(options, basePath);
Parameters
- options  AuthenticationOptions
- Authentication options for the website
- basePath  String
- Base path of the website
Return Value
StringThe full path to the logout page.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type 
AuthenticationOptions. When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).
 See Also
See Also