uri class : Fragment getter

Description

Gets the escaped URI fragment.

Syntax

uriInstance.Fragment

Arguments

None.

Return value

ClassDescription
stringThe escaped URI fragment.

Sample code

1:

uri u = new uri("http://www.example.com/aaa/bbb.html#top");

2:

string frag = u.Fragment;

Notes

It's a wrapper of the System.Uri.Fragment property.

Links for reference

Copyright © Cooker All rights reserved.