Example #1
0
 public ApplicationUrlState(ReadOnlyUrl url)
     : this(Application.Current, url)
 {
 }
Example #2
0
 protected ReadOnlyUrl(ReadOnlyUrl url, string relativeUrl, ReadOnlyQueryString queryString)
     : this(new Uri(new Uri(url.AbsoluteUri), new Uri(relativeUrl, UriKind.Relative)))
 {
     SetQueryString(queryString);
 }
Example #3
0
 protected ReadOnlyUrl(ReadOnlyUrl url, string relativeUrl)
     : this(url, relativeUrl, null)
 {
 }
Example #4
0
 protected virtual void Copy(ReadOnlyUrl url, ReadOnlyQueryString queryString)
 {
     Copy(url);
     SetQueryString(queryString);
 }