コード例 #1
0
        /// <summary>
        /// Gets the game manifest URL.
        /// </summary>
        /// <returns>The game manifest URL.</returns>
        public string GetGameManifestURL()
        {
            string manifestURL = String.Format("{0}/game/{1}/GameManifest.txt",
                                               Config.GetBaseProtocolURL(),
                                               Config.GetSystemTarget());

            return(manifestURL);
        }
コード例 #2
0
ファイル: ManifestHandler.cs プロジェクト: halbich/Launchpad
        /// <summary>
        /// Gets the game manifest URL.
        /// </summary>
        /// <returns>The game manifest URL.</returns>
        public string GetGameManifestURL()
        {
            string manifestURL = $"{Config.GetBaseProtocolURL()}/game/{Config.GetSystemTarget()}/GameManifest.txt";

            return(manifestURL);
        }