Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / System / Runtime / CompilerServices / ExecutionScope.cs / 1305376 / ExecutionScope.cs
using System; using System.Linq.Expressions; namespace System.Runtime.CompilerServices { // Kept for backwards compatibility. Unused [Obsolete("do not use this type", true)] public class ExecutionScope { public ExecutionScope Parent; public object[] Globals; public object[] Locals; internal ExecutionScope() { Parent = null; Globals = null; Locals = null; } public object[] CreateHoistedLocals() { throw new NotSupportedException(); } public Delegate CreateDelegate(int indexLambda, object[] locals) { throw new NotSupportedException(); } public Expression IsolateExpression(Expression expression, object[] locals) { throw new NotSupportedException(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FormCollection.cs
- XmlNullResolver.cs
- XhtmlBasicValidatorAdapter.cs
- PageHandlerFactory.cs
- ValueOfAction.cs
- CombinedGeometry.cs
- WebPageTraceListener.cs
- StatusStrip.cs
- JsonQNameDataContract.cs
- XmlSchemaNotation.cs
- DataTrigger.cs
- IISMapPath.cs
- MULTI_QI.cs
- HttpRuntimeSection.cs
- Catch.cs
- CancellationTokenRegistration.cs
- Graph.cs
- ListViewSortEventArgs.cs
- DependencyObjectValidator.cs
- UIElement.cs
- Table.cs
- ContainerSelectorActiveEvent.cs
- RoleManagerSection.cs
- AutomationPeer.cs
- QilNode.cs
- SocketAddress.cs
- ADMembershipUser.cs
- ISSmlParser.cs
- ContextBase.cs
- LostFocusEventManager.cs
- ContextMenuStripGroupCollection.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- ImageSourceConverter.cs
- TextBox.cs
- Point4DConverter.cs
- CollectionViewSource.cs
- Helper.cs
- DataColumn.cs
- RelationshipEnd.cs
- TranslateTransform3D.cs
- ImportCatalogPart.cs
- _SslSessionsCache.cs
- EntitySqlQueryCacheEntry.cs
- SimpleType.cs
- SafeUserTokenHandle.cs
- SqlCacheDependencyDatabase.cs
- UndoManager.cs
- XmlIncludeAttribute.cs
- XPathChildIterator.cs
- SoapFormatExtensions.cs
- NativeActivityAbortContext.cs
- HWStack.cs
- EntityKey.cs
- GridToolTip.cs
- WebServiceAttribute.cs
- RouteParameter.cs
- PrintingPermission.cs
- NameValueConfigurationElement.cs
- XmlSchema.cs
- BindingBase.cs
- WindowPattern.cs
- PersonalizationProvider.cs
- CompoundFileStorageReference.cs
- XPathDocumentNavigator.cs
- WSHttpBindingBaseElement.cs
- CachedTypeface.cs
- DataGridViewMethods.cs
- TimelineClockCollection.cs
- EventDescriptor.cs
- ChtmlCommandAdapter.cs
- BaseCodePageEncoding.cs
- GroupStyle.cs
- DataRowChangeEvent.cs
- StackOverflowException.cs
- LocalClientSecuritySettings.cs
- TypeUnloadedException.cs
- SqlBinder.cs
- DelegatedStream.cs
- PropertyDescriptorGridEntry.cs
- TraceEventCache.cs
- DataTableNewRowEvent.cs
- SchemaDeclBase.cs
- AssertSection.cs
- FatalException.cs
- SystemWebSectionGroup.cs
- EventManager.cs
- GeometryModel3D.cs
- ListItemCollection.cs
- DeferredRunTextReference.cs
- ToolboxBitmapAttribute.cs
- XMLUtil.cs
- SQLInt32.cs
- ConfigXmlAttribute.cs
- StrongNameUtility.cs
- ContractDescription.cs
- OdbcConnectionOpen.cs
- DataGridViewCheckBoxColumn.cs
- PreloadedPackages.cs
- IdnMapping.cs
- BasicExpressionVisitor.cs