コード例 #1
0
        public override BackEndServer TryDirectBackEndCalculation()
        {
            if (this.BackEndServer != null)
            {
                return(this.BackEndServer);
            }
            int?num = ServerLookup.LookupVersion(this.Fqdn);

            if (num == null)
            {
                return(base.CheckForNullAndThrowIfApplicable <BackEndServer>(null));
            }
            this.BackEndServer = new BackEndServer(this.Fqdn, num.Value);
            return(this.BackEndServer);
        }
コード例 #2
0
 int?IServerVersionLookup.LookupVersion(string server)
 {
     return(ServerLookup.LookupVersion(server));
 }