Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.Activities / System / Activities / Debugger / VirtualStackFrame.cs / 1305376 / VirtualStackFrame.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Activities.Debugger { using System; using System.Collections.Generic; using System.Diagnostics; using System.Runtime; // A virtual callstack frame for the interpretter. // This is created by calls to EnterState and LeaveState. // This is explictly not named "StackFrame" so that it's not confused with // System.Diagnostics.StackFrame. [DebuggerNonUserCode] [Fx.Tag.XamlVisible(false)] public class VirtualStackFrame { State state; IDictionarylocals; public VirtualStackFrame(State state, IDictionary locals) { this.state = state; this.locals = locals; } public VirtualStackFrame(State state) : this(state, null) { Fx.Assert(state.NumberOfEarlyLocals == 0, "should start with empty locals"); } public State State { get { return this.state; } } // All locals (both early-bound and late-bound) for this frame. public IDictionary Locals { get { return this.locals; } } public override string ToString() { return this.state.ToString(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PagePropertiesChangingEventArgs.cs
- InstanceLockQueryResult.cs
- ApplicationServiceHelper.cs
- InstanceOwnerQueryResult.cs
- DtrList.cs
- Variable.cs
- ConfigurationException.cs
- OpenTypeCommon.cs
- FrameworkReadOnlyPropertyMetadata.cs
- DefaultValidator.cs
- WindowsScroll.cs
- UrlPropertyAttribute.cs
- MetricEntry.cs
- SectionVisual.cs
- HtmlUtf8RawTextWriter.cs
- MDIClient.cs
- UserMapPath.cs
- RadioButtonStandardAdapter.cs
- ProcessModuleCollection.cs
- TableFieldsEditor.cs
- DataGridRow.cs
- XomlCompilerHelpers.cs
- Sql8ConformanceChecker.cs
- ExpressionVisitorHelpers.cs
- SplitContainer.cs
- ReferenceEqualityComparer.cs
- SHA1Managed.cs
- ThemeableAttribute.cs
- StringFunctions.cs
- DeviceContext2.cs
- RepeatButton.cs
- Page.cs
- RegisteredScript.cs
- GeneralTransform2DTo3DTo2D.cs
- FunctionUpdateCommand.cs
- RemoteWebConfigurationHostStream.cs
- FormViewInsertedEventArgs.cs
- CodeGotoStatement.cs
- NativeMethods.cs
- TransformerInfo.cs
- WindowsTokenRoleProvider.cs
- Rule.cs
- DbParameterCollection.cs
- DataPager.cs
- ResourceWriter.cs
- IPCCacheManager.cs
- PersonalizationState.cs
- DiagnosticTraceSchemas.cs
- SessionStateItemCollection.cs
- RuleInfoComparer.cs
- EntityDataSourceColumn.cs
- DataSourceCache.cs
- MenuItemAutomationPeer.cs
- SqlReferenceCollection.cs
- ExceptionHandlersDesigner.cs
- BitmapSource.cs
- dsa.cs
- ObjectQueryExecutionPlan.cs
- BamlLocalizableResource.cs
- HwndTarget.cs
- OracleBoolean.cs
- XmlDocument.cs
- AnnotationAuthorChangedEventArgs.cs
- EntitySqlQueryCacheEntry.cs
- WsatServiceAddress.cs
- FieldAccessException.cs
- CommandID.cs
- TreeView.cs
- MultiTrigger.cs
- DuplexChannelFactory.cs
- HandledMouseEvent.cs
- BinaryKeyIdentifierClause.cs
- BidirectionalDictionary.cs
- QilLoop.cs
- RadialGradientBrush.cs
- WmlValidationSummaryAdapter.cs
- WebPartHelpVerb.cs
- DataTableTypeConverter.cs
- ImageAttributes.cs
- ConfigXmlCDataSection.cs
- BaseCodeDomTreeGenerator.cs
- SiteMapNodeCollection.cs
- TdsParserSessionPool.cs
- HtmlInputCheckBox.cs
- CodeObjectCreateExpression.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- FormViewCommandEventArgs.cs
- DataGridViewTextBoxCell.cs
- RegexMatchCollection.cs
- DatagridviewDisplayedBandsData.cs
- SelectingProviderEventArgs.cs
- InternalMappingException.cs
- GreaterThanOrEqual.cs
- NameValueFileSectionHandler.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- FillBehavior.cs
- HttpBrowserCapabilitiesWrapper.cs
- GridPatternIdentifiers.cs
- NetSectionGroup.cs
- FrameworkPropertyMetadata.cs