Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeOfExpression.cs / 1 / CodeTypeOfExpression.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ////// [ 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; } } } }/// Gets or sets the data type. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataBoundControlActionList.cs
- SecurityContextSecurityTokenParameters.cs
- PasswordPropertyTextAttribute.cs
- EntityDataSourceDesigner.cs
- DeflateStreamAsyncResult.cs
- TreeNodeCollection.cs
- ReadOnlyMetadataCollection.cs
- DataGridState.cs
- UpdateCompiler.cs
- SelectionChangedEventArgs.cs
- VScrollBar.cs
- EdmScalarPropertyAttribute.cs
- infer.cs
- WhitespaceReader.cs
- DiscoveryDocumentSerializer.cs
- UTF7Encoding.cs
- GridViewRowPresenterBase.cs
- DesignerDataConnection.cs
- CollectionBase.cs
- InstanceLockException.cs
- SequenceDesigner.xaml.cs
- PageAdapter.cs
- HostProtectionPermission.cs
- OutputCacheProfileCollection.cs
- XmlILAnnotation.cs
- Transform.cs
- Sql8ConformanceChecker.cs
- GotoExpression.cs
- LinqDataSourceSelectEventArgs.cs
- ClientConfigurationSystem.cs
- Point3DCollection.cs
- ChtmlFormAdapter.cs
- CallContext.cs
- XXXOnTypeBuilderInstantiation.cs
- WebPageTraceListener.cs
- RegexRunnerFactory.cs
- infer.cs
- Accessible.cs
- ScriptComponentDescriptor.cs
- XhtmlBasicLiteralTextAdapter.cs
- DocumentApplicationDocumentViewer.cs
- oledbmetadatacolumnnames.cs
- Size3D.cs
- SecurityTraceRecordHelper.cs
- DataGridViewColumnTypeEditor.cs
- RectangleGeometry.cs
- ListenerAdapterBase.cs
- XamlPointCollectionSerializer.cs
- BehaviorEditorPart.cs
- SqlMethodAttribute.cs
- XamlFigureLengthSerializer.cs
- CompilerResults.cs
- UserControlAutomationPeer.cs
- QueryOperator.cs
- StyleXamlParser.cs
- Message.cs
- SqlDataReader.cs
- WebResponse.cs
- TextTreeTextElementNode.cs
- DateTimeConstantAttribute.cs
- DataTable.cs
- DataGridViewCellStyle.cs
- GetIndexBinder.cs
- Rectangle.cs
- TableDetailsRow.cs
- TriggerBase.cs
- CommentEmitter.cs
- PartManifestEntry.cs
- NetworkAddressChange.cs
- OrderedDictionaryStateHelper.cs
- RegexTree.cs
- RequestTimeoutManager.cs
- EmptyQuery.cs
- TimeSpan.cs
- CompModSwitches.cs
- UpDownBase.cs
- MemoryMappedViewStream.cs
- BooleanToVisibilityConverter.cs
- ConfigurationElement.cs
- CodeLabeledStatement.cs
- UrlAuthFailedErrorFormatter.cs
- DataMisalignedException.cs
- ToolboxItemAttribute.cs
- XmlHierarchicalDataSourceView.cs
- UnsafeNativeMethodsPenimc.cs
- SystemTcpStatistics.cs
- TreeViewAutomationPeer.cs
- SchemaMapping.cs
- KeyedCollection.cs
- ParenthesizePropertyNameAttribute.cs
- BooleanProjectedSlot.cs
- MsmqInputMessagePool.cs
- DiagnosticsConfiguration.cs
- DataServiceRequestException.cs
- ComplexPropertyEntry.cs
- StringCollection.cs
- SafeMarshalContext.cs
- ExpressionBuilder.cs
- DataSourceUtil.cs
- SchemeSettingElementCollection.cs