'Declaration Public Shared Function ApplyTo(Of T)( _ ByVal settings As NameValueCollection, _ ByVal target As T, _ Optional ByVal setInnerSetting As Boolean, _ Optional ByVal suppressExceptions As Boolean _ ) As T
public static T ApplyTo<T>( NameValueCollection settings, T target, bool setInnerSetting, bool suppressExceptions )
Parameters
- settings
- The System.Collections.Specialized.NameValueCollection containing the settings.
- target
- The object to apply the settings to.
- setInnerSetting
- Indicates whether to set inner settings.
- suppressExceptions
- Indicates whether to suppress exceptions.
Type Parameters
- T
- The type of the target object.
Return Value
The target object with the applied settings.