// Find or create a shared property group.
	public SharedPropertyGroup CreatePropertyGroup
				(String name, ref PropertyLockMode dwIsoMode,
		     	 ref PropertyReleaseMode dwRelMode, out bool fExist)
			{
				SharedPropertyGroup group;
				group = (SharedPropertyGroup)(table[name]);
				if(group != null)
				{
					fExist = true;
					return group;
				}
				group = new SharedPropertyGroup();
				table[name] = group;
				fExist = false;
				return group;
			}
Beispiel #2
0
        // Find or create a shared property group.
        public SharedPropertyGroup CreatePropertyGroup
            (String name, ref PropertyLockMode dwIsoMode,
            ref PropertyReleaseMode dwRelMode, out bool fExist)
        {
            SharedPropertyGroup group;

            group = (SharedPropertyGroup)(table[name]);
            if (group != null)
            {
                fExist = true;
                return(group);
            }
            group       = new SharedPropertyGroup();
            table[name] = group;
            fExist      = false;
            return(group);
        }