OpenSim.Region.CoreModules.Agent.Capabilities.CapabilitiesModule.GetChildrenSeeds C# (CSharp) Méthode

GetChildrenSeeds() public méthode

public GetChildrenSeeds ( UUID agentID ) : string>.Dictionary
agentID UUID
Résultat string>.Dictionary
        public Dictionary<ulong, string> GetChildrenSeeds(UUID agentID)
        {
            Dictionary<ulong, string> seeds = null;
            if (childrenSeeds.TryGetValue(agentID, out seeds))
                return seeds;
            return new Dictionary<ulong, string>();
        }