ParseAuthorizeResponse() public method

public ParseAuthorizeResponse ( string webAuthenticationResult ) : void
webAuthenticationResult string
return void
        private static AuthorizationResult CreateResultForOkResponse(string url)
        {
            AuthorizationResult result = new AuthorizationResult(AuthorizationStatus.Success);

            if (!string.IsNullOrEmpty(url))
            {
                result.ParseAuthorizeResponse(url);       
            }

            return result;
        }