Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Common / EntitySql / UntypedNullExpression.cs / 1305376 / UntypedNullExpression.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.Data.Metadata.Edm; using System.Data.Common.CommandTrees; namespace System.Data.Common.EntitySql { ////// Represents an untyped null. /// internal sealed class UntypedNullExpression : DbExpression { internal UntypedNullExpression() : base(DbExpressionKind.Null, TypeUsage.NullType) { } ////// The visitor pattern method for expression visitors that do not produce a result value. /// /// An instance of DbExpressionVisitor. public override void Accept( DbExpressionVisitor visitor ) { throw EntityUtil.NotSupported(); } ////// The visitor pattern method for expression visitors that produce a result value of a specific type. /// /// An instance of a typed DbExpressionVisitor that produces a result value of type TResultType. public override T Accept( DbExpressionVisitor visitor ) { throw EntityUtil.NotSupported(); } } } // 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
- XmlSubtreeReader.cs
- xsdvalidator.cs
- UTF32Encoding.cs
- RegexCompiler.cs
- TreeNodeBinding.cs
- Helpers.cs
- ADMembershipUser.cs
- WebConfigurationHost.cs
- DataTableExtensions.cs
- Focus.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- LinkUtilities.cs
- SoapMessage.cs
- List.cs
- PersistNameAttribute.cs
- ToolStripEditorManager.cs
- SystemIPInterfaceProperties.cs
- TemplateBindingExpressionConverter.cs
- RoutingExtensionElement.cs
- RandomNumberGenerator.cs
- CssStyleCollection.cs
- BinHexDecoder.cs
- StatusBarDrawItemEvent.cs
- XmlSchemaValidator.cs
- UserNamePasswordValidator.cs
- WebPartDescriptionCollection.cs
- Attributes.cs
- FixedBufferAttribute.cs
- TextElementAutomationPeer.cs
- Win32MouseDevice.cs
- SecurityIdentifierConverter.cs
- MasterPage.cs
- SQLResource.cs
- AssociationTypeEmitter.cs
- ColorConverter.cs
- PKCS1MaskGenerationMethod.cs
- TextPointerBase.cs
- RadioButtonList.cs
- SamlSubject.cs
- PageContentAsyncResult.cs
- Point3DValueSerializer.cs
- CollectionMarkupSerializer.cs
- PenThread.cs
- RepeaterItem.cs
- GradientStop.cs
- CodeIterationStatement.cs
- FilteredDataSetHelper.cs
- AspNetHostingPermission.cs
- PointKeyFrameCollection.cs
- SchemaTypeEmitter.cs
- XamlSerializerUtil.cs
- SizeAnimationBase.cs
- LinkLabel.cs
- DesignTimeTemplateParser.cs
- TextControlDesigner.cs
- TimeSpanValidatorAttribute.cs
- CompiledRegexRunner.cs
- ExecutionTracker.cs
- DelimitedListTraceListener.cs
- ProbeDuplexCD1AsyncResult.cs
- SystemWebSectionGroup.cs
- TaiwanCalendar.cs
- InternalRelationshipCollection.cs
- ConnectionManagementElementCollection.cs
- MessageDecoder.cs
- Internal.cs
- DependencyPropertyChangedEventArgs.cs
- RectAnimationBase.cs
- ListView.cs
- ListItemsCollectionEditor.cs
- MonthChangedEventArgs.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- XmlHierarchicalEnumerable.cs
- WebPartConnectionsEventArgs.cs
- XmlSchemaNotation.cs
- DataServiceKeyAttribute.cs
- StreamInfo.cs
- ClockController.cs
- Trigger.cs
- Errors.cs
- InputScopeNameConverter.cs
- NullRuntimeConfig.cs
- ArrayConverter.cs
- EmptyEnumerator.cs
- WizardPanel.cs
- GeneralTransform2DTo3D.cs
- TextUtf8RawTextWriter.cs
- RelationshipWrapper.cs
- UnsafeNativeMethodsCLR.cs
- PowerEase.cs
- UIntPtr.cs
- InternalRelationshipCollection.cs
- Image.cs
- cache.cs
- List.cs
- Drawing.cs
- SmtpFailedRecipientException.cs
- Transform.cs
- DataSourceControlBuilder.cs
- DiscoveryMessageSequenceGenerator.cs