ExtenderGetValue() private method

private ExtenderGetValue ( IExtenderProvider provider, object component ) : object
provider IExtenderProvider
component object
return object
 /// <summary>
 ///     Retrieves the value of the property for the given component.  This will
 ///     throw an exception if the component does not have this property.
 /// </summary>
 public override object GetValue(object comp)
 {
     return(_extenderInfo.ExtenderGetValue(_provider, comp));
 }
Esempio n. 2
0
 /// <summary>
 /// Retrieves the value of the property for the given component. This will
 /// throw an exception if the component does not have this property.
 /// </summary>
 public override object?GetValue(object?comp) => _extenderInfo.ExtenderGetValue(_provider, comp);