BonCodeAJP13.BonCodeAJP13ServerConnection.ServerPath C# (CSharp) Method

ServerPath() private method

implement delegated call to return a physical path for a given virtual path
private ServerPath ( String virtualPath ) : string
virtualPath String
return string
        private string ServerPath(String virtualPath)
        {
            //default to return the main path for the request unless we have a delegate function
            //to resolve it
            string returnPath = BonCodeAJP13Settings.BonCodeAjp13_PhysicalFilePath;
            if (p_ServerPath != null)
            {
                returnPath = p_ServerPath(virtualPath);
            }

            return returnPath;
        }