This commit is contained in:
Stef Heyenrath
2018-09-30 11:25:14 +02:00
committed by GitHub
parent ada50d893f
commit 04bcca6e14
5 changed files with 26 additions and 58 deletions

View File

@@ -65,6 +65,14 @@ namespace WireMock
/// </summary>
bool IsStartState { get; }
/// <summary>
/// Gets a value indicating whether this mapping is an Admin Interface.
/// </summary>
/// <value>
/// <c>true</c> if this mapping is an Admin Interface; otherwise, <c>false</c>.
/// </value>
bool IsAdminInterface { get; }
/// <summary>
/// ResponseToAsync
/// </summary>
@@ -79,13 +87,5 @@ namespace WireMock
/// <param name="nextState">The Next State.</param>
/// <returns>The <see cref="RequestMatchResult"/>.</returns>
RequestMatchResult GetRequestMatchResult(RequestMessage requestMessage, [CanBeNull] string nextState);
/// <summary>
/// Gets a value indicating whether this mapping is an Admin Interface.
/// </summary>
/// <value>
/// <c>true</c> if this mapping is an Admin Interface; otherwise, <c>false</c>.
/// </value>
bool IsAdminInterface { get; }
}
}