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
- prefixendpointaddressmessagefilter.cs
- SignatureHelper.cs
- NavigationCommands.cs
- ProvidePropertyAttribute.cs
- XmlSerializerImportOptions.cs
- Odbc32.cs
- SchemaElementLookUpTable.cs
- Config.cs
- FixedPageAutomationPeer.cs
- FontEmbeddingManager.cs
- DateTimeConstantAttribute.cs
- MarkupExtensionParser.cs
- AnonymousIdentificationSection.cs
- SelectorAutomationPeer.cs
- ResourcePart.cs
- XsdBuilder.cs
- ContextInformation.cs
- ContractTypeNameCollection.cs
- ReadWriteSpinLock.cs
- StorageFunctionMapping.cs
- ValidationHelper.cs
- IntellisenseTextBox.designer.cs
- VideoDrawing.cs
- SyncOperationState.cs
- M3DUtil.cs
- DesignTimeParseData.cs
- _RequestCacheProtocol.cs
- MailAddressParser.cs
- DiscoveryMessageSequenceCD1.cs
- TaskFileService.cs
- UserControlParser.cs
- SubpageParaClient.cs
- WebUtil.cs
- DataGridViewCellStyleConverter.cs
- Zone.cs
- SystemSounds.cs
- TextEffectCollection.cs
- XmlRawWriterWrapper.cs
- SecureEnvironment.cs
- TCEAdapterGenerator.cs
- CommonXSendMessage.cs
- TreeNodeSelectionProcessor.cs
- PropertyGrid.cs
- XPathNodeList.cs
- ColorConverter.cs
- Metadata.cs
- KnownTypes.cs
- TemplateBindingExtensionConverter.cs
- ACE.cs
- ShaperBuffers.cs
- SafeNativeMethods.cs
- ResourcePermissionBaseEntry.cs
- MetadataLocation.cs
- IfAction.cs
- ParsedAttributeCollection.cs
- X509Certificate2Collection.cs
- ManagementEventWatcher.cs
- RowUpdatedEventArgs.cs
- DiscoveryReferences.cs
- mactripleDES.cs
- HMACSHA384.cs
- WaitHandle.cs
- RangeContentEnumerator.cs
- MailMessage.cs
- MimeObjectFactory.cs
- RuntimeArgumentHandle.cs
- HtmlForm.cs
- ContextQuery.cs
- ProfileProvider.cs
- SyndicationDeserializer.cs
- CompModSwitches.cs
- SortDescriptionCollection.cs
- PrimarySelectionGlyph.cs
- Int16Animation.cs
- GroupBoxRenderer.cs
- Mappings.cs
- ETagAttribute.cs
- ObjectQueryExecutionPlan.cs
- SqlComparer.cs
- DesignerOptionService.cs
- StringDictionary.cs
- Proxy.cs
- KeyFrames.cs
- ImageClickEventArgs.cs
- DocumentApplicationJournalEntry.cs
- GridViewColumnHeaderAutomationPeer.cs
- Point.cs
- _StreamFramer.cs
- StylusPointCollection.cs
- ToolStripSplitButton.cs
- BooleanAnimationBase.cs
- FactoryRecord.cs
- ToolBarButton.cs
- DataGridView.cs
- ByteFacetDescriptionElement.cs
- ToolStripItemClickedEventArgs.cs
- FormsAuthenticationUserCollection.cs
- UnsafeNativeMethodsMilCoreApi.cs
- ElementFactory.cs
- AmbientLight.cs