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
- DtrList.cs
- IntegerValidator.cs
- PartialList.cs
- AdornerDecorator.cs
- CreateUserErrorEventArgs.cs
- BinaryHeap.cs
- WindowVisualStateTracker.cs
- OdbcDataAdapter.cs
- CatalogPartCollection.cs
- ClientUrlResolverWrapper.cs
- BamlMapTable.cs
- BooleanExpr.cs
- SaveFileDialog.cs
- IndexedGlyphRun.cs
- Parameter.cs
- ReceiveContext.cs
- KeyBinding.cs
- ScrollEvent.cs
- DateTimeFormatInfo.cs
- DataGridCellAutomationPeer.cs
- NegotiateStream.cs
- FillErrorEventArgs.cs
- DataGridViewRowEventArgs.cs
- GroupQuery.cs
- CodeVariableDeclarationStatement.cs
- ExpressionLink.cs
- BitmapCodecInfoInternal.cs
- TextOptions.cs
- DependencyPropertyKey.cs
- PassportAuthenticationModule.cs
- CommandExpr.cs
- ReferencedType.cs
- AccessText.cs
- EntityViewGenerationConstants.cs
- log.cs
- ObjectStateEntryDbDataRecord.cs
- ArcSegment.cs
- GlobalEventManager.cs
- ManualResetEvent.cs
- WebBrowserEvent.cs
- Deflater.cs
- AttachedPropertyBrowsableAttribute.cs
- SelectionEditingBehavior.cs
- TypeElementCollection.cs
- DesignerFrame.cs
- VectorCollectionValueSerializer.cs
- HtmlInputText.cs
- ContextInformation.cs
- SweepDirectionValidation.cs
- DelegateSerializationHolder.cs
- WebPartConnectionsConfigureVerb.cs
- XslAstAnalyzer.cs
- TextEmbeddedObject.cs
- CompositeDesignerAccessibleObject.cs
- DesignBindingPicker.cs
- SqlException.cs
- LoadMessageLogger.cs
- FileStream.cs
- DataTemplateSelector.cs
- DrawingAttributeSerializer.cs
- ManualResetEvent.cs
- NumberFunctions.cs
- CustomError.cs
- DataGridViewTextBoxColumn.cs
- DefaultMergeHelper.cs
- SymLanguageVendor.cs
- EUCJPEncoding.cs
- PrefixQName.cs
- SerializerWriterEventHandlers.cs
- DefaultBindingPropertyAttribute.cs
- ToolConsole.cs
- ThreadStateException.cs
- XmlSchemaAttribute.cs
- KeyProperty.cs
- SerializationHelper.cs
- BaseValidator.cs
- SQLRoleProvider.cs
- DateTimeFormat.cs
- GestureRecognizer.cs
- MarkupCompilePass2.cs
- RawStylusInputCustomData.cs
- EntityPropertyMappingAttribute.cs
- SqlFlattener.cs
- CompModSwitches.cs
- DateTimeConverter.cs
- OlePropertyStructs.cs
- LoginStatusDesigner.cs
- PerfCounterSection.cs
- TextTreeTextNode.cs
- WindowsFormsSectionHandler.cs
- MediaContext.cs
- DataListAutoFormat.cs
- XmlILConstructAnalyzer.cs
- DataControlLinkButton.cs
- HttpBufferlessInputStream.cs
- OutputCacheSection.cs
- XmlConvert.cs
- PrinterSettings.cs
- DataSourceXmlSubItemAttribute.cs
- DescendantQuery.cs