Advertisement
Guest User

Untitled

a guest
May 29th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. public partial class Startup
  2. {
  3.     public static IDataProtector DataProtector;
  4.  
  5.     public void Configuration(IAppBuilder app)
  6.     {
  7.         //...
  8.     }
  9.  
  10.     public void ConfigureOAuth(IAppBuilder app)
  11.     {
  12.         //...
  13.  
  14.         DataProtector = app.CreateDataProtector(typeof (OAuthAuthorizationServerMiddleware).Namespace,
  15.             "Access_Token", "v1");
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement