/// <summary>
 /// Checks whether a given source type is supported, according to Enum ConfigurationSourceTypes.
 /// </summary>
 /// <param name="sourceType">The source type.</param>
 /// <returns>True/False for supported or not.</returns>
 public override bool SupportsType(ConfigurationSourceTypes sourceType)
 {
     return(false);
 }
Esempio n. 2
0
 /// <summary>
 /// Checks whether a given Source Type is supported.
 /// </summary>
 /// <param name="sourceType">The type of source being checked, according to enum EPS.Configuration.ConfigurationSourceTypes.</param>
 /// <returns>True or False, indicating whether or not the source type is supported.</returns>
 public abstract bool SupportsType(ConfigurationSourceTypes sourceType);
Esempio n. 3
0
 /// <summary>
 /// Checks whether a given type is supported.
 /// </summary>
 /// <param name="sourceType"></param>
 /// <returns></returns>
 public override bool SupportsType(ConfigurationSourceTypes sourceType)
 {
     return false;
 }
 /// <summary>
 /// Checks whether a given source type is supported, according to Enum ConfigurationSourceTypes.
 /// </summary>
 /// <param name="sourceType">The source type.</param>
 /// <returns>True/False for supported or not.</returns>
 public override bool SupportsType(ConfigurationSourceTypes sourceType) => false;
 /// <summary>
 /// Checks whether a given Source Type is supported.
 /// </summary>
 /// <param name="sourceType">The type of source being checked, according to enum EPS.Configuration.ConfigurationSourceTypes.</param>
 /// <returns>True or False, indicating whether or not the source type is supported.</returns>
 public abstract bool SupportsType(ConfigurationSourceTypes sourceType);