コード例 #1
0
 /// <summary>
 /// Add a LevelSetting configuration context item into the collection.
 /// </summary>
 /// <param name="argContext">LevelSettingElement Object</param>
 public void Add(LevelSettingConfigContext argContext)
 {
     BaseAdd(argContext);
 }
コード例 #2
0
        /// <summary>
        /// Initialize new context collection object.
        /// </summary>
        public LevelSettingConfigContextCollection()
        {
            LevelSettingConfigContext context = (LevelSettingConfigContext)CreateNewElement();

            Add(context);
        }
コード例 #3
0
 /// <summary>
 /// Calculate the location of specified LevelSetting configuration context item.
 /// </summary>
 /// <param name="argContext">LevelSettingElement Object</param>
 /// <returns>Location of specified LevelSetting configuration context item.</returns>
 public int IndexOf(LevelSettingConfigContext argContext)
 {
     return(BaseIndexOf(argContext));
 }