public Location <T> GetLocation(ActivityContext context)
 {
     if (context == null)
     {
         throw FxTrace.Exception.ArgumentNull("context");
     }
     return(context.GetLocation <T>(this));
 }
 public Location <T> GetLocation(ActivityContext context)
 {
     if (context == null)
     {
         throw FxTrace.Exception.ArgumentNull("context");
     }
     base.ThrowIfNotInTree();
     return(context.GetLocation <T>(base.RuntimeArgument));
 }