Code:
/ 4.0 / 4.0 / 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. /// ///// // //----------------------------------------------------------------------------- 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
- RegistryConfigurationProvider.cs
- XmlArrayItemAttributes.cs
- CurrentTimeZone.cs
- ShapeTypeface.cs
- FlowPosition.cs
- SoapRpcMethodAttribute.cs
- mediaeventargs.cs
- DBAsyncResult.cs
- DataControlLinkButton.cs
- BufferedStream.cs
- Win32MouseDevice.cs
- MonthChangedEventArgs.cs
- EndPoint.cs
- BooleanStorage.cs
- VerticalAlignConverter.cs
- FileChangesMonitor.cs
- OrderedDictionary.cs
- Polygon.cs
- Constraint.cs
- DateTimeOffsetStorage.cs
- WeakRefEnumerator.cs
- HtmlElementEventArgs.cs
- ProtocolsConfigurationHandler.cs
- ViewPort3D.cs
- ColumnResult.cs
- BuildProviderUtils.cs
- PanelDesigner.cs
- ConfigurationSectionGroup.cs
- DiscreteKeyFrames.cs
- TemplateBamlRecordReader.cs
- SQLConvert.cs
- ActivityCollectionMarkupSerializer.cs
- TextModifier.cs
- StreamResourceInfo.cs
- EntityDataSourceContextDisposingEventArgs.cs
- ComponentEvent.cs
- SelectionPatternIdentifiers.cs
- HtmlInputRadioButton.cs
- ReceiveMessageAndVerifySecurityAsyncResultBase.cs
- SqlCaseSimplifier.cs
- Int16Storage.cs
- COM2ExtendedUITypeEditor.cs
- TextTreeExtractElementUndoUnit.cs
- TraceSwitch.cs
- LogEntryHeaderSerializer.cs
- EmptyQuery.cs
- WebBrowserNavigatedEventHandler.cs
- DataGridViewTextBoxEditingControl.cs
- RelationalExpressions.cs
- PropertyToken.cs
- AssemblyHash.cs
- ClientTargetCollection.cs
- NavigationProgressEventArgs.cs
- ToolBarPanel.cs
- SupportsEventValidationAttribute.cs
- ToolStripItemImageRenderEventArgs.cs
- WorkItem.cs
- SchemaObjectWriter.cs
- ManipulationPivot.cs
- PreDigestedSignedInfo.cs
- Pair.cs
- OpenTypeLayoutCache.cs
- StylusDevice.cs
- CustomLineCap.cs
- MonthChangedEventArgs.cs
- OutputBuffer.cs
- BookmarkNameHelper.cs
- DataSourceCollectionBase.cs
- SafeIUnknown.cs
- DataTableMapping.cs
- FilterQuery.cs
- CodeMethodReturnStatement.cs
- DataObjectPastingEventArgs.cs
- ProxyWebPart.cs
- ThreadStartException.cs
- QilValidationVisitor.cs
- TextCompositionEventArgs.cs
- ElementMarkupObject.cs
- UIHelper.cs
- GeneralTransform3DTo2DTo3D.cs
- SizeFConverter.cs
- TransformConverter.cs
- AudioLevelUpdatedEventArgs.cs
- HtmlInputControl.cs
- XXXInfos.cs
- UndoManager.cs
- CutCopyPasteHelper.cs
- StrokeSerializer.cs
- ApplicationActivator.cs
- ToolStripContentPanelRenderEventArgs.cs
- GridViewActionList.cs
- ButtonRenderer.cs
- WindowsTokenRoleProvider.cs
- TagPrefixCollection.cs
- Journaling.cs
- SortKey.cs
- DispatcherEventArgs.cs
- ListControl.cs
- PerformanceCounter.cs
- DefaultValueConverter.cs