Pchp.Library.PhpPath.IsRemoteFile C# (CSharp) Method

IsRemoteFile() static private method

Check if the given path is a remote url.
Invalid path.
static private IsRemoteFile ( string url ) : bool
url string The path to test.
return bool
        internal static bool IsRemoteFile(string/*!*/ url)
        {
            return GetScheme(url) != "file";
        }