Exemplo n.º 1
0
 public F1PeekResultPresentation(F1PeekResult f1Result)
 {
     if (f1Result == null)
     {
         throw new ArgumentNullException("f1Result");
     }
     _helpUri = new Uri(f1Result.HelpUrl);
 }
Exemplo n.º 2
0
 public F1PeekResultPresentation(F1PeekResult f1Result)
 {
     if (f1Result == null)
     {
         throw new ArgumentNullException("f1Result");
     }
     _helpUri = new Uri(f1Result.HelpUrl);
 }
Exemplo n.º 3
0
        public IPeekResultPresentation TryCreatePeekResultPresentation(IPeekResult result)
        {
            F1PeekResult f1Result = result as F1PeekResult;

            if (f1Result != null)
            {
                return(new F1PeekResultPresentation(f1Result));
            }

            return(null);
        }