DotNetXri.Client.Resolve.CacheNode.find C# (CSharp) Méthode

find() private méthode

private find ( string sSubSegment ) : CacheNode
sSubSegment string
Résultat CacheNode
        internal CacheNode find(string sSubSegment)
        {
            CacheNode oNode = (CacheNode) moCacheHash[sSubSegment];
            if (oNode != null)
            {
            lock (moCache)
            {
                // While we were blocked, the node might have been pruned
                if (oNode.moNext == null)
                {
                    return null;
                }

                oNode.touch();
            }
            }

            return oNode;
        }

Same methods

CacheNode::find ( XRIAuthority oAuth, int nNextSubsegment, bool bCompleteChain, ArrayList oCachedDescriptors ) : CacheResult