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
- TimeoutValidationAttribute.cs
- CodeCatchClauseCollection.cs
- ErrorItem.cs
- SafeViewOfFileHandle.cs
- WebControlToolBoxItem.cs
- HtmlTableRowCollection.cs
- PropertyMappingExceptionEventArgs.cs
- RepeaterCommandEventArgs.cs
- OdbcStatementHandle.cs
- ResourceCategoryAttribute.cs
- SynchronizedDispatch.cs
- TransportSecurityHelpers.cs
- PathGeometry.cs
- Addressing.cs
- XmlSchemaIdentityConstraint.cs
- RuleProcessor.cs
- ModelPropertyCollectionImpl.cs
- Deflater.cs
- ContractSearchPattern.cs
- ValidationError.cs
- Queue.cs
- HealthMonitoringSection.cs
- ChtmlTextWriter.cs
- ReverseComparer.cs
- ServerValidateEventArgs.cs
- UnaryQueryOperator.cs
- linebase.cs
- SourceCollection.cs
- Membership.cs
- AssemblyResolver.cs
- AppDomain.cs
- ResolveDuplexCD1AsyncResult.cs
- HatchBrush.cs
- DataReaderContainer.cs
- Decorator.cs
- AliasedExpr.cs
- CodeDirectionExpression.cs
- RadioButton.cs
- FlowDocumentView.cs
- StorageMappingItemCollection.cs
- PersonalizationStateInfoCollection.cs
- DockPanel.cs
- TypeCodeDomSerializer.cs
- FlowDocumentPage.cs
- FixedSOMElement.cs
- MediaTimeline.cs
- UpdateProgress.cs
- Ticks.cs
- InputGestureCollection.cs
- ConnectionManagementElement.cs
- UIElementCollection.cs
- RegexWriter.cs
- StdValidatorsAndConverters.cs
- BitmapEffectDrawing.cs
- ArgumentsParser.cs
- AnnotationHighlightLayer.cs
- OdbcFactory.cs
- RSAProtectedConfigurationProvider.cs
- CookieHandler.cs
- DetailsViewInsertedEventArgs.cs
- SerialPort.cs
- LinqDataSourceDeleteEventArgs.cs
- XmlComment.cs
- DataGridViewAccessibleObject.cs
- ApplicationId.cs
- NavigationProperty.cs
- GPPOINT.cs
- HttpContextServiceHost.cs
- TableProviderWrapper.cs
- DbProviderFactoriesConfigurationHandler.cs
- DynamicILGenerator.cs
- DynamicILGenerator.cs
- HtmlFormParameterReader.cs
- StringOutput.cs
- Paragraph.cs
- Vars.cs
- ProjectionCamera.cs
- DataBindingHandlerAttribute.cs
- _TLSstream.cs
- ContextMenu.cs
- TabControl.cs
- ErrorRuntimeConfig.cs
- LinkDescriptor.cs
- NetTcpSecurity.cs
- ReflectEventDescriptor.cs
- OracleSqlParser.cs
- EncryptedXml.cs
- NameNode.cs
- InfoCardProofToken.cs
- FunctionParameter.cs
- ChineseLunisolarCalendar.cs
- Soap12FormatExtensions.cs
- GradientStopCollection.cs
- StateWorkerRequest.cs
- AnnotationResourceCollection.cs
- Vector3DCollectionValueSerializer.cs
- HtmlTableRow.cs
- PointAnimationClockResource.cs
- XmlChildEnumerator.cs
- NameTable.cs