public property Remove(int index) { property obj = propertyCollection[index]; propertyCollection.Remove(obj); return(obj); }
public static void WriteSettings(string affiliateApplication, Hashtable ht) { settings inSettings = new settings(); foreach (object key in ht.Keys) { property prop = new property(); prop.name = key.ToString(); prop.Value = (string)ht[key]; inSettings.propertyCollection.Add(prop); } StringBuilder sb = new StringBuilder(); StringWriter writer = new StringWriter(sb); XmlSerializer serializer = new XmlSerializer(typeof(settings)); serializer.Serialize(writer, inSettings); SSOHelper.SaveConfigInfo(affiliateApplication, sb.ToString()); }
public property Add(property obj) { return(propertyCollection.Add(obj)); }
public void Remove(property obj) { base.Remove(obj); }
public void Insert(int index, property obj) { base.Insert(index, obj); }
public property Add(property obj) { base.Add(obj); return(obj); }