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
- COSERVERINFO.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- DeferredElementTreeState.cs
- CqlGenerator.cs
- TaskHelper.cs
- IconBitmapDecoder.cs
- Stroke2.cs
- ReachFixedDocumentSerializerAsync.cs
- NumericUpDownAcceleration.cs
- XmlNullResolver.cs
- ScrollBarAutomationPeer.cs
- EntityModelSchemaGenerator.cs
- DesignerActionVerbList.cs
- PreservationFileWriter.cs
- WSSecurityPolicy12.cs
- GroupPartitionExpr.cs
- DbQueryCommandTree.cs
- XPathNodeIterator.cs
- SQLCharsStorage.cs
- TemplateColumn.cs
- StickyNoteContentControl.cs
- ImageAnimator.cs
- HttpProcessUtility.cs
- FontNamesConverter.cs
- IssuanceLicense.cs
- ProfilePropertySettings.cs
- SelectionRange.cs
- FunctionCommandText.cs
- PlainXmlDeserializer.cs
- ArrayConverter.cs
- PerformanceCounterCategory.cs
- QueryReaderSettings.cs
- CFStream.cs
- CodeAttributeArgument.cs
- TransactionBridge.cs
- ZipIOFileItemStream.cs
- CngProperty.cs
- CompiledRegexRunner.cs
- DataSourceControl.cs
- TraceUtility.cs
- ListInitExpression.cs
- AddressAlreadyInUseException.cs
- TypeSystem.cs
- SchemaImporter.cs
- WindowPatternIdentifiers.cs
- StartUpEventArgs.cs
- DropDownList.cs
- HtmlMeta.cs
- SerializeAbsoluteContext.cs
- WmiPutTraceRecord.cs
- SchemaTableColumn.cs
- Highlights.cs
- IgnorePropertiesAttribute.cs
- Action.cs
- ModelPropertyCollectionImpl.cs
- MemberPath.cs
- NetworkInformationException.cs
- storepermission.cs
- PackageRelationship.cs
- _FtpDataStream.cs
- LogReserveAndAppendState.cs
- RegexStringValidatorAttribute.cs
- ExtensionQuery.cs
- XmlException.cs
- Tuple.cs
- CurrencyWrapper.cs
- HttpWebRequestElement.cs
- AsyncCodeActivityContext.cs
- ConfigurationConverterBase.cs
- XmlILOptimizerVisitor.cs
- DatePickerDateValidationErrorEventArgs.cs
- UmAlQuraCalendar.cs
- TextEffect.cs
- Win32PrintDialog.cs
- DeferredBinaryDeserializerExtension.cs
- BooleanKeyFrameCollection.cs
- CodeDirectionExpression.cs
- DoubleCollectionConverter.cs
- SqlDependencyListener.cs
- SplitterDesigner.cs
- TemplateControlParser.cs
- CssTextWriter.cs
- namescope.cs
- HtmlInputFile.cs
- FlowLayout.cs
- WebPartConnectionsCloseVerb.cs
- UnionCqlBlock.cs
- ScriptReference.cs
- DirectionalLight.cs
- EventWaitHandleSecurity.cs
- COM2AboutBoxPropertyDescriptor.cs
- WebPartZoneDesigner.cs
- HashLookup.cs
- StreamGeometry.cs
- ActiveXContainer.cs
- AtomPub10ServiceDocumentFormatter.cs
- ViewStateException.cs
- TemplateGroupCollection.cs
- PageAsyncTaskManager.cs
- SystemFonts.cs