예제 #1
0
 /// <summary>
 /// Sets the property.
 /// </summary>
 /// <param name="collection">The collection.</param>
 /// <param name="property">The property.</param>
 public override void SetProperty(Mediachase.Net.Wdom.PropertyInfoCollection collection, Mediachase.Net.Wdom.PropertyInfo property)
 {
     if (property != null)
     {
         SetPropertyAndSave(collection, property, true, true);
     }
 }
예제 #2
0
 /// <summary>
 /// Removes the property.
 /// </summary>
 /// <param name="collection">The collection.</param>
 /// <param name="propName">Name of the prop.</param>
 public override void RemoveProperty(Mediachase.Net.Wdom.PropertyInfoCollection collection, string propName)
 {
     if (collection != null)
     {
         PropertyInfo propToRemove = collection[propName];
         if (propToRemove != null)
         {
             collection.Remove(propToRemove);
             SavePropertyCollection(collection);
         }
     }
 }
예제 #3
0
 public override void SetProperty(Mediachase.Net.Wdom.PropertyInfoCollection collection, Mediachase.Net.Wdom.PropertyInfo property)
 {
     throw new NotImplementedException();
 }
예제 #4
0
 public override void RemoveProperty(Mediachase.Net.Wdom.PropertyInfoCollection collection, string propName)
 {
     throw new NotImplementedException();
 }