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
- WrapPanel.cs
- ToolStripDropDownItem.cs
- NameValueCollection.cs
- XmlQueryCardinality.cs
- SQLRoleProvider.cs
- TableLayoutPanel.cs
- ArraySortHelper.cs
- Triangle.cs
- DataGridColumnEventArgs.cs
- ModelItemCollection.cs
- CompositeScriptReferenceEventArgs.cs
- VirtualPath.cs
- XMLSchema.cs
- HtmlElementCollection.cs
- RelatedView.cs
- StorageComplexTypeMapping.cs
- SafeNativeMethods.cs
- DependencyPropertyValueSerializer.cs
- ValidationHelpers.cs
- ResXResourceSet.cs
- ItemsControlAutomationPeer.cs
- TileModeValidation.cs
- SpoolingTaskBase.cs
- ImageList.cs
- ResourceManager.cs
- CqlErrorHelper.cs
- CacheChildrenQuery.cs
- Ref.cs
- ErrorWebPart.cs
- DateTimeValueSerializerContext.cs
- WindowClosedEventArgs.cs
- ProgressiveCrcCalculatingStream.cs
- RegexBoyerMoore.cs
- CodeAssignStatement.cs
- ArglessEventHandlerProxy.cs
- SafeSystemMetrics.cs
- LockCookie.cs
- XmlDataSourceView.cs
- AuthenticationService.cs
- SqlWorkflowPersistenceService.cs
- ExpressionBuilderContext.cs
- RtfToken.cs
- SmtpDigestAuthenticationModule.cs
- RegularExpressionValidator.cs
- VSWCFServiceContractGenerator.cs
- Margins.cs
- SpeechUI.cs
- RuleRef.cs
- ProviderConnectionPointCollection.cs
- EditorPart.cs
- EntitySqlException.cs
- TextRangeProviderWrapper.cs
- XmlNotation.cs
- MemberDescriptor.cs
- IRCollection.cs
- CustomCategoryAttribute.cs
- DataBindingHandlerAttribute.cs
- TextCompositionManager.cs
- Win32.cs
- Stroke.cs
- ProgressChangedEventArgs.cs
- HttpClientCertificate.cs
- EntityDataSourceContainerNameItem.cs
- DateTimeOffset.cs
- CompositionTarget.cs
- DataGridViewButtonCell.cs
- MobileControlDesigner.cs
- MessageLoggingElement.cs
- WindowsComboBox.cs
- EntitySqlQueryBuilder.cs
- EndPoint.cs
- _NegoState.cs
- GetRecipientListRequest.cs
- Int32CollectionConverter.cs
- XmlAttribute.cs
- HtmlInputCheckBox.cs
- SpotLight.cs
- DynamicPropertyHolder.cs
- EmptyCollection.cs
- Page.cs
- DnsPermission.cs
- VisualBrush.cs
- JavaScriptSerializer.cs
- WasNotInstalledException.cs
- PersonalizationDictionary.cs
- ZoneLinkButton.cs
- DocumentViewerBaseAutomationPeer.cs
- PageRequestManager.cs
- RemoteCryptoRsaServiceProvider.cs
- DragEvent.cs
- MetadataProperty.cs
- NavigationService.cs
- FileChangesMonitor.cs
- BaseParser.cs
- DrawingImage.cs
- XmlSchemaDatatype.cs
- HttpValueCollection.cs
- SqlPersonalizationProvider.cs
- SqlDataSourceFilteringEventArgs.cs
- BindingElementExtensionElement.cs