日期:2014-05-16 浏览次数:20469 次
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace test.Models
{
public class myTools123 : DotNetOpenAuth.AspNet.IAuthenticationClient
{
public string ProviderName
{
get
{
return "test";
}
}
public void RequestAuthentication(HttpContextBase context, Uri returnUrl)
{
throw new NotImplementedException();
}
public DotNetOpenAuth.AspNet.AuthenticationResult VerifyAuthentication(HttpContextBase context)
{
throw new NotImplementedException();
}
}
}