Lines Matching refs:fragment

32 | fragment | string | Yes| No| Fragments in the URI. If this part does not exist, a null object is …
48 [scheme:]scheme-specific-part[#fragment]
52 [scheme:][//authority][path][?query][#fragment]
56 [scheme:][//[user-info@]host[:port]][path][?query][#fragment]
59 … part of the URI decoding scheme. It is located between [scheme:] and [#fragment] and consists of …
65 …- query: query component, which is located between path and fragment, indicated by the first quest…
66 - fragment: fragment component, which is separated from scheme-specific-part by the pound key (#). …
73 console.info(uriObj1.fragment) // null
80 …bj2 = new uri.URI("gopher://spinaltap.micro.umn.edu/00/Weather/California/Los%20Angeles#fragment");
82 console.info(uriObj2.fragment) // fragment
91 console.info(uriObj3.fragment) // null
98 …t uriObj4 = new uri.URI("https://username:password@host:8080/directory/file?foo=1&bar=2#fragment");
100 console.info(uriObj4.fragment) // fragment
109 console.info(uriObj5.fragment) // null
116 …uriObj6 = new uri.URI("https://username:my+name@host:8080/directory/my+file?foo=1&bar=2#fragment");
120 console.info(uriObj6.encodedFragment) // fragment
131 console.log(uriObj7.fragment) // qwer=da
164 let mm = 'https://username:password@host:8080/directory/file?foo=1&bar=2#fragment';
711 createFromParts(scheme: string, ssp: string, fragment: string): URI
713 Creates a URI based on the provided scheme, scheme-specific-part, and fragment components.
725 | fragment | string | Yes | Fragment of this URI. The fragment component is the part following the…