コード例 #1
0
        /// <summary>
        ///     Returns the client with the specified id. Null if not initialized or not found.
        /// </summary>
        public static IClient GetClient(int id)
        {
            if (!IsInitialized)
            {
                return(null);
            }

            return(_clientRegistry.GetClient(id));
        }