System.GAC.AssemblyCache.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);
            AssemblyCache.GetCachePath(ASM_CACHE_FLAGS.ASM_CACHE_DOWNLOAD, buffer, ref bufferSize);
            return buffer.ToString();
        }