Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeOfExpression.cs / 1305376 / CodeTypeOfExpression.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeTypeOfExpression : CodeExpression { private CodeTypeReference type; ////// Represents a TypeOf expression. /// ////// public CodeTypeOfExpression() { } ////// Initializes a new instance of ///. /// /// public CodeTypeOfExpression(CodeTypeReference type) { Type = type; } ////// Initializes a new instance of ///. /// /// public CodeTypeOfExpression(string type) { Type = new CodeTypeReference(type); } ///[To be supplied.] ////// public CodeTypeOfExpression(Type type) { Type = new CodeTypeReference(type); } ///[To be supplied.] ////// public CodeTypeReference Type { get { if (type == null) { type = new CodeTypeReference(""); } return type; } set { type = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets the data type. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RuntimeConfig.cs
- IgnoreSectionHandler.cs
- RowUpdatingEventArgs.cs
- SoapEnumAttribute.cs
- HandoffBehavior.cs
- InvokeHandlers.cs
- TabletCollection.cs
- mda.cs
- DesignerForm.cs
- PropertyKey.cs
- ProjectionAnalyzer.cs
- StyleXamlParser.cs
- BaseServiceProvider.cs
- SimpleWebHandlerParser.cs
- ISO2022Encoding.cs
- JsonStringDataContract.cs
- XmlCountingReader.cs
- SharedPersonalizationStateInfo.cs
- JsonSerializer.cs
- ComponentCommands.cs
- ResXResourceReader.cs
- ContextMenuService.cs
- ActivationServices.cs
- XmlNodeReader.cs
- TableParagraph.cs
- MultiTrigger.cs
- _ListenerRequestStream.cs
- WindowsUpDown.cs
- ListViewContainer.cs
- DataKeyArray.cs
- ScrollProperties.cs
- ModelItemCollection.cs
- HMACSHA512.cs
- LocalizationComments.cs
- SelectionWordBreaker.cs
- ExpressionNode.cs
- RuntimeArgumentHandle.cs
- BrowserCapabilitiesFactory.cs
- ListItemCollection.cs
- Mapping.cs
- XmlSchemaValidationException.cs
- FormViewCommandEventArgs.cs
- DataAccessException.cs
- WebPartHeaderCloseVerb.cs
- TextServicesHost.cs
- FocusChangedEventArgs.cs
- LocalValueEnumerator.cs
- util.cs
- Splitter.cs
- SystemIPGlobalProperties.cs
- DataExpression.cs
- PtsHelper.cs
- CheckPair.cs
- HtmlInputSubmit.cs
- TransformDescriptor.cs
- PartialCachingControl.cs
- Avt.cs
- XmlSchemaFacet.cs
- TrimSurroundingWhitespaceAttribute.cs
- TreeNodeCollection.cs
- SafeSecurityHandles.cs
- DataGridViewIntLinkedList.cs
- SecurityKeyIdentifierClause.cs
- DomainConstraint.cs
- _FtpDataStream.cs
- EntityModelSchemaGenerator.cs
- AuthenticationModulesSection.cs
- HotCommands.cs
- CalendarAutoFormat.cs
- BitmapPalettes.cs
- ParamArrayAttribute.cs
- ConnectionPoint.cs
- BevelBitmapEffect.cs
- JumpTask.cs
- SQLInt16.cs
- ProfessionalColorTable.cs
- SortFieldComparer.cs
- ArgumentException.cs
- LineProperties.cs
- Axis.cs
- BindingExpression.cs
- NameSpaceEvent.cs
- BookmarkOptionsHelper.cs
- SettingsPropertyNotFoundException.cs
- BindingMAnagerBase.cs
- XmlNavigatorStack.cs
- Converter.cs
- MexTcpBindingElement.cs
- RightsController.cs
- UnsafeNativeMethods.cs
- ControlBindingsCollection.cs
- ListenerConnectionModeReader.cs
- ControlOperationInvoker.cs
- remotingproxy.cs
- TCEAdapterGenerator.cs
- Int32RectValueSerializer.cs
- DataBindingCollection.cs
- ValueQuery.cs
- ProfilePropertySettings.cs
- CompilerScopeManager.cs