Example #1
0
 /// <summary>
 ///     Determine whether the provisioner supports the specified server type.
 /// </summary>
 /// <param name="serverKind">
 ///     A <see cref="DatabaseServerKind"/> value representing the server type.
 /// </param>
 /// <returns>
 ///     <c>true</c>, if the provisioner supports databases hosted in the specified server type; otherwise, <c>false</c>.
 /// </returns>
 public abstract bool SupportsServerKind(DatabaseServerKind serverKind);
Example #2
0
 /// <summary>
 ///     Determine whether the provisioner supports the specified server type.
 /// </summary>
 /// <param name="serverKind">
 ///     A <see cref="DatabaseServerKind"/> value representing the server type.
 /// </param>
 /// <returns>
 ///     <c>true</c>, if the provisioner supports databases hosted in the specified server type; otherwise, <c>false</c>.
 /// </returns>
 public override bool SupportsServerKind(DatabaseServerKind serverKind) => serverKind == DatabaseServerKind.RavenDB;