22 references to PendingAction
SMSvcHost (22)
System\ServiceModel\Activation\ListenerAdapter.cs (22)
154if (app.PendingAction != null) 156app.PendingAction.MergeFromDeletedAction(); 228if (app.PendingAction != null) 230app.PendingAction.MergeFromAppPoolChangedAction(appPoolId); 290if (app.PendingAction != null) 292app.PendingAction.MergeFromDeletedAction(); 321if (app.PendingAction.AppPoolId != null) 323CompleteAppPoolChange(app, app.PendingAction.AppPoolId); 326if (app.PendingAction.Path != null) 328app.Path = app.PendingAction.Path; 331if (app.PendingAction.Bindings != null) 333RegisterNewBindings(app, app.PendingAction.Bindings); 336if (app.PendingAction.RequestsBlocked.HasValue) 338app.SetRequestBlocked(app.PendingAction.RequestsBlocked.Value); 384if (app.PendingAction != null) 386app.PendingAction.MergeFromBindingChangedAction(bindings); 450Fx.Assert(app.PendingAction != null, "The app should be waiting for AllLCStopped notification."); 451app.PendingAction.MergeFromCreatedAction(path, siteId, appPoolId, requestsBlocked, bindings); 603if (app.PendingAction.ActionType == AppActionType.Deleted) 608else if (app.PendingAction.ActionType == AppActionType.SettingsChanged) 744if (app.PendingAction != null) 746app.PendingAction.MergeFromRequestsBlockedAction(requestsBlocked);