Sitecore.Social.Hyves.Providers.HyvesServerSession.LoadState C# (CSharp) Метод

LoadState() публичный Метод

public LoadState ( HyvesSessionState hyvesSessionState ) : void
hyvesSessionState HyvesSessionState
Результат void
    public void LoadState(HyvesSessionState hyvesSessionState)
    {
      this.referrer = hyvesSessionState.Referrer;

      this.StateLoaded = true;
    }

Usage Example

 private HyvesServerSession LoadHyvesSession(AuthArgs authArgs)
 {
   var hyvesSessionState = (HyvesSessionState)authArgs.InternalData["hyvesSessionState"];
   var hyvesServerSession = new HyvesServerSession(authArgs.Application.ApplicationKey, authArgs.Application.ApplicationSecret, new List<HyvesMethod>());
   hyvesServerSession.LoadState(hyvesSessionState);
   return hyvesServerSession;
 }
All Usage Examples Of Sitecore.Social.Hyves.Providers.HyvesServerSession::LoadState