File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
cpp/VS_Snippets_Remoting/NclMailASync/cpp
csharp/System.IdentityModel.Tokens/IssuerNameRegistry/Overview/scripts Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ int main(array<String^>^ args)
76
76
String^ answer = Console::ReadLine ();
77
77
// If the user canceled the send, and mail hasn't been
78
78
// sent yet,then cancel the pending operation.
79
- if (! answer->ToLower ()->StartsWith (" c" ) && mailSent)
79
+ if (answer->ToLower ()->StartsWith (" c" ) && ! mailSent)
80
80
{
81
81
client->SendAsyncCancel ();
82
82
}
Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ Sys.Mvc.MvcHelpers._onComplete = function Sys_Mvc_MvcHelpers$_onComplete(request
309
309
/// <param name="ajaxContext" type="Sys.Mvc.AjaxContext">
310
310
/// </param>
311
311
ajaxContext . set_response ( request . get_executor ( ) ) ;
312
- if ( ! ajaxOptions . onComplete && ajaxOptions . onComplete ( ajaxContext ) ) {
312
+ if ( ajaxOptions . onComplete && ! ajaxOptions . onComplete ( ajaxContext ) ) {
313
313
return ;
314
314
}
315
315
var statusCode = ajaxContext . get_response ( ) . get_statusCode ( ) ;
You can’t perform that action at this time.
0 commit comments