Is there any downside to ALWAYS using UriKind.RelativeOrAbsolute (C# / Silverlight), aside from some minor loss of performance, instead of checking if the path is relative or not and using the correct UriKind?
Uri nav = new Uri(path, UriKind.RelativeOrAbsolute);
Stated otherwise: Using the above code, is there ever a time when it will be evaluated as a relative path when it should have been evaluated as an absolute path? Is one checked before the other? Is it possible a pathcould satisfactorily be a relative path && an absolute path?