GetComponents() protected method

protected GetComponents ( Uri uri, UriComponents components, UriFormat format ) : string
uri Uri
components UriComponents
format UriFormat
return string
コード例 #1
0
ファイル: UriData.cs プロジェクト: pmq20/mono_forked
 string Lookup(ref string cache, UriComponents components, UriFormat format)
 {
     if (cache == null)
     {
         cache = parser.GetComponents(uri, components, format);
     }
     return(cache);
 }