GetComponents() 보호된 메소드

protected GetComponents ( Uri uri, UriComponents components, UriFormat format ) : string
uri Uri
components UriComponents
format UriFormat
리턴 string
예제 #1
0
 string Lookup(ref string cache, UriComponents components, UriFormat format)
 {
     if (cache == null)
     {
         cache = parser.GetComponents(uri, components, format);
     }
     return(cache);
 }