/// <summary> /// Load a completed scope from the persistence store. /// </summary> /// <param name="scopeId"> /// <see cref="Guid" /> representing the unique identifier of the completed scope. /// </param> /// <param name="outerActivity"> /// The activity in which to load the completed scope into. /// </param> protected override Activity LoadCompletedContextActivity(Guid scopeId, Activity outerActivity) { TraceHelper.Trace(); Activity contextActivity = null; try { using (IResourceAccessor resourceAccessor = CreateAccessor(this.resourceProvider)) { byte[] instanceState = resourceAccessor.RetrieveCompletedScope(scopeId); contextActivity = RestoreFromDefaultSerializedForm(instanceState, outerActivity); } } catch (Exception e) { TraceHelper.Trace(unexpectedExceptionText, e); base.RaiseServicesExceptionNotHandledEvent(e, Guid.Empty); } return(contextActivity); }