Beispiel #1
0
        /// <summary>
        /// Checks whether or not the server provides binaries and patches for the specified platform.
        /// </summary>
        /// <returns><c>true</c>, if the server does provide files for the platform, <c>false</c> otherwise.</returns>
        /// <param name="Platform">Platform.</param>
        public bool IsPlatformAvailable(ESystemTarget Platform)
        {
            PatchProtocolHandler Patch = Config.GetPatchProtocol();

            return(Patch.IsPlatformAvailable(Platform));
        }
Beispiel #2
0
        /// <summary>
        /// Checks whether or not the server provides binaries and patches for the specified platform.
        /// </summary>
        /// <returns><c>true</c>, if the server does provide files for the platform, <c>false</c> otherwise.</returns>
        /// <param name="platform">platform.</param>
        public bool IsPlatformAvailable(ESystemTarget platform)
        {
            PatchProtocolHandler patchService = Configuration.GetPatchProtocol();

            return(patchService.IsPlatformAvailable(platform));
        }