Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is RFC-compliant URI

While going through features of .NET framework 4.5, I found that it supports RFC-compliant URIs. What does it mean to have RFC-compliant URI support?

like image 791
Dr. Rajesh Rolen Avatar asked Sep 20 '11 10:09

Dr. Rajesh Rolen


2 Answers

RFC is a set of internet standards that define various aspects of internet protocols - in your case the standard format of an URI. You can find the relevant standard here: http://www.ietf.org/rfc/rfc2396.txt

RFC 2396 defines explicitly what are the parts that make up an URI (for example the scheme, authority, path etc.) and what are the valid values for each of them.

What they mean with RFC-compliant URIs is that the Uri class from the .NET framework follows the above standard and enforces it.

like image 110
byteflux Avatar answered Oct 19 '22 23:10

byteflux


An RFC is a specification; an RFC compliant URI is one which conforms to that specification.

You didn't say which RFC though, it might mean 3986 or 2396 (or one I haven't spotted).

like image 42
Quentin Avatar answered Oct 19 '22 22:10

Quentin