Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeReferenceExpression.cs / 1305376 / CodeTypeReferenceExpression.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 CodeTypeReferenceExpression : CodeExpression { private CodeTypeReference type; ////// Represents a reference to a type. /// ////// public CodeTypeReferenceExpression() { } ////// Initializes a new instance of ///. /// /// public CodeTypeReferenceExpression(CodeTypeReference type) { Type = type; } ////// Initializes a new instance of ///using the specified type. /// /// public CodeTypeReferenceExpression(string type) { Type = new CodeTypeReference(type); } ///[To be supplied.] ////// public CodeTypeReferenceExpression(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 type to reference. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HitTestParameters.cs
- EmbeddedMailObjectsCollection.cs
- MasterPageParser.cs
- AspCompat.cs
- XXXInfos.cs
- Directory.cs
- CodeNamespaceImport.cs
- TableLayoutRowStyleCollection.cs
- CodeExpressionRuleDeclaration.cs
- XmlSignificantWhitespace.cs
- ColorConvertedBitmap.cs
- BinaryWriter.cs
- TransportContext.cs
- AnnouncementService.cs
- BitConverter.cs
- QuadraticBezierSegment.cs
- ScrollPatternIdentifiers.cs
- Nodes.cs
- Storyboard.cs
- TablePattern.cs
- CodeSubDirectory.cs
- RegexEditorDialog.cs
- JsonSerializer.cs
- MailMessageEventArgs.cs
- UniqueTransportManagerRegistration.cs
- ToolStripItem.cs
- Helper.cs
- PartialCachingControl.cs
- DataObjectFieldAttribute.cs
- SqlDependency.cs
- IntegerValidatorAttribute.cs
- RuntimeConfig.cs
- TransformPatternIdentifiers.cs
- ActivationWorker.cs
- PropertyPathConverter.cs
- Collection.cs
- DynamicExpression.cs
- ApplyTemplatesAction.cs
- ByeOperationAsyncResult.cs
- GestureRecognitionResult.cs
- CodeIdentifiers.cs
- Collection.cs
- SmiSettersStream.cs
- XmlReader.cs
- PerformanceCounterPermission.cs
- ThrowHelper.cs
- X509Chain.cs
- XPathAncestorQuery.cs
- StreamUpdate.cs
- Query.cs
- ViewManager.cs
- DockingAttribute.cs
- BuildProviderCollection.cs
- OpCodes.cs
- JapaneseLunisolarCalendar.cs
- PageContentAsyncResult.cs
- HandlerWithFactory.cs
- SqlDataSourceCommandEventArgs.cs
- HttpFileCollectionWrapper.cs
- IPAddress.cs
- XPathMessageFilterTable.cs
- AttributeCollection.cs
- HatchBrush.cs
- ProjectionPruner.cs
- ClusterRegistryConfigurationProvider.cs
- ConfigXmlText.cs
- CharacterBuffer.cs
- WindowsAuthenticationModule.cs
- PersistenceTypeAttribute.cs
- Currency.cs
- ExtendedPropertyDescriptor.cs
- HttpBindingExtension.cs
- DelegatedStream.cs
- EtwTrackingBehavior.cs
- EntityDataSourceContextCreatingEventArgs.cs
- EncryptedData.cs
- PageAsyncTaskManager.cs
- XamlNamespaceHelper.cs
- EmptyImpersonationContext.cs
- DefaultPropertyAttribute.cs
- StringResourceManager.cs
- StateMachineAction.cs
- WebBrowserEvent.cs
- X509Utils.cs
- MsdtcClusterUtils.cs
- XslException.cs
- ClrPerspective.cs
- EditCommandColumn.cs
- Binding.cs
- MappedMetaModel.cs
- UriSchemeKeyedCollection.cs
- IndexedSelectQueryOperator.cs
- EntityDataSourceMemberPath.cs
- EpmContentDeSerializer.cs
- HealthMonitoringSectionHelper.cs
- MarkupObject.cs
- LassoSelectionBehavior.cs
- HttpHeaderCollection.cs
- ValidationHelper.cs
- DynamicRouteExpression.cs