コード例 #1
0
ファイル: Includes.cs プロジェクト: codenesium/samples
        public static AuthResponse SuccessAuthResponseWithLink(string linkText, string linkValue)
        {
            var response = new AuthResponse();

            response.Success = true;
            response.SetLink(linkText, linkValue);
            return(response);
        }