Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / Microsoft / Scripting / Ast / DefaultExpression.cs / 1305376 / DefaultExpression.cs
/* **************************************************************************** * * Copyright (c) Microsoft Corporation. * * This source code is subject to terms and conditions of the Microsoft Public License. A * copy of the license can be found in the License.html file at the root of this distribution. If * you cannot locate the Microsoft Public License, please send an email to * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound * by the terms of the Microsoft Public License. * * You must not remove this notice, or any other, from this software. * * * ***************************************************************************/ using System.Diagnostics; namespace System.Linq.Expressions { ////// Represents the default value of a type or an empty expression. /// #if !SILVERLIGHT [DebuggerTypeProxy(typeof(Expression.DefaultExpressionProxy))] #endif public sealed class DefaultExpression : Expression { private readonly Type _type; internal DefaultExpression(Type type) { _type = type; } ////// Gets the static type of the expression that this ///represents. /// The public sealed override Type Type { get { return _type; } } ///that represents the static type of the expression. /// Returns the node type of this Expression. Extension nodes should return /// ExpressionType.Extension when overriding this method. /// ///The public sealed override ExpressionType NodeType { get { return ExpressionType.Default; } } ///of the expression. /// Dispatches to the specific visit method for this node type. /// protected internal override Expression Accept(ExpressionVisitor visitor) { return visitor.VisitDefault(this); } } public partial class Expression { ////// Creates an empty expression that has ///type. /// /// A public static DefaultExpression Empty() { return new DefaultExpression(typeof(void)); } ///that has the property equal to /// and the property set to . /// /// Creates a /// Athat has the property set to the specified type. /// to set the property equal to. /// /// A public static DefaultExpression Default(Type type) { if (type == typeof(void)) { return Empty(); } return new DefaultExpression(type); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. /* **************************************************************************** * * Copyright (c) Microsoft Corporation. * * This source code is subject to terms and conditions of the Microsoft Public License. A * copy of the license can be found in the License.html file at the root of this distribution. If * you cannot locate the Microsoft Public License, please send an email to * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound * by the terms of the Microsoft Public License. * * You must not remove this notice, or any other, from this software. * * * ***************************************************************************/ using System.Diagnostics; namespace System.Linq.Expressions { ///that has the property equal to /// and the property set to the specified type. /// /// Represents the default value of a type or an empty expression. /// #if !SILVERLIGHT [DebuggerTypeProxy(typeof(Expression.DefaultExpressionProxy))] #endif public sealed class DefaultExpression : Expression { private readonly Type _type; internal DefaultExpression(Type type) { _type = type; } ////// Gets the static type of the expression that this ///represents. /// The public sealed override Type Type { get { return _type; } } ///that represents the static type of the expression. /// Returns the node type of this Expression. Extension nodes should return /// ExpressionType.Extension when overriding this method. /// ///The public sealed override ExpressionType NodeType { get { return ExpressionType.Default; } } ///of the expression. /// Dispatches to the specific visit method for this node type. /// protected internal override Expression Accept(ExpressionVisitor visitor) { return visitor.VisitDefault(this); } } public partial class Expression { ////// Creates an empty expression that has ///type. /// /// A public static DefaultExpression Empty() { return new DefaultExpression(typeof(void)); } ///that has the property equal to /// and the property set to . /// /// Creates a /// Athat has the property set to the specified type. /// to set the property equal to. /// /// A public static DefaultExpression Default(Type type) { if (type == typeof(void)) { return Empty(); } return new DefaultExpression(type); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.that has the property equal to /// and the property set to the specified type. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Expression.cs
- SessionSymmetricMessageSecurityProtocolFactory.cs
- NegotiateStream.cs
- InfoCardRSACryptoProvider.cs
- Base64Stream.cs
- RegionData.cs
- FrameworkElementFactoryMarkupObject.cs
- JavaScriptString.cs
- ASCIIEncoding.cs
- WebBrowserProgressChangedEventHandler.cs
- ReferencedAssembly.cs
- PageCatalogPart.cs
- DataGridViewLinkCell.cs
- TemplateBindingExpressionConverter.cs
- TextEditorDragDrop.cs
- LayoutEditorPart.cs
- CodeSubDirectoriesCollection.cs
- VirtualDirectoryMappingCollection.cs
- TemplateBindingExpressionConverter.cs
- Brush.cs
- AuthorizationContext.cs
- HitTestResult.cs
- ValueChangedEventManager.cs
- PolyBezierSegment.cs
- ClientBuildManager.cs
- BamlTreeUpdater.cs
- AlternateView.cs
- ProviderConnectionPointCollection.cs
- ZoneButton.cs
- EventRecord.cs
- SmtpReplyReader.cs
- ContractTypeNameElement.cs
- Solver.cs
- ScriptResourceDefinition.cs
- UIPermission.cs
- ActionItem.cs
- PowerStatus.cs
- PrintController.cs
- DataColumnSelectionConverter.cs
- Column.cs
- Header.cs
- RuleSetDialog.cs
- ExecutionContext.cs
- CrossContextChannel.cs
- DataMemberConverter.cs
- InternalBase.cs
- TableLayoutPanel.cs
- CallbackValidator.cs
- RectangleGeometry.cs
- ModulesEntry.cs
- DataBoundControlParameterTarget.cs
- WmlLinkAdapter.cs
- TreeSet.cs
- DBConnectionString.cs
- CoreSwitches.cs
- RuntimeConfigLKG.cs
- EmissiveMaterial.cs
- ExpressionBinding.cs
- BrowserDefinition.cs
- TargetPerspective.cs
- DbException.cs
- ImageBrush.cs
- ScriptControlDescriptor.cs
- CacheMemory.cs
- GridLengthConverter.cs
- DataGridViewBindingCompleteEventArgs.cs
- Fonts.cs
- HtmlHistory.cs
- ListViewInsertionMark.cs
- QueueProcessor.cs
- UdpUtility.cs
- CachedTypeface.cs
- ListBoxItem.cs
- UpdateProgress.cs
- BaseAsyncResult.cs
- TimeEnumHelper.cs
- BitmapEffectDrawing.cs
- ListView.cs
- AdjustableArrowCap.cs
- RbTree.cs
- ReflectionPermission.cs
- ModelPropertyDescriptor.cs
- DynamicArgumentDialog.cs
- BamlTreeNode.cs
- __FastResourceComparer.cs
- Pair.cs
- AssociationTypeEmitter.cs
- RsaKeyGen.cs
- StylusButtonEventArgs.cs
- SmiRecordBuffer.cs
- RadioButtonAutomationPeer.cs
- FieldDescriptor.cs
- OracleDataAdapter.cs
- MouseButton.cs
- PrivilegedConfigurationManager.cs
- MediaEntryAttribute.cs
- PathSegment.cs
- SqlInternalConnectionSmi.cs
- EFAssociationProvider.cs
- TextTreeUndo.cs