Dev2.Reflection.GAC.GetDownloadPath C# (CSharp) Method

GetDownloadPath() public static method

public static GetDownloadPath ( ) : String
return String
        public static String GetDownloadPath()
        {
            uint bufferSize = 255;
            StringBuilder buffer = new StringBuilder((int)bufferSize);
            GAC.GetCachePath(ASM_CACHE_FLAGS.ASM_CACHE_DOWNLOAD, buffer, ref bufferSize);
            return buffer.ToString();
        }
        #endregion