Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeReferenceExpression.cs / 1 / CodeTypeReferenceExpression.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 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; } } } }/// Gets or sets the type to reference. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- LongValidatorAttribute.cs
- ReadOnlyObservableCollection.cs
- KnownIds.cs
- SqlDataReader.cs
- WebPartManagerInternals.cs
- UiaCoreApi.cs
- DataGridViewTextBoxCell.cs
- MachineKey.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- TextLineResult.cs
- TagPrefixAttribute.cs
- CqlParserHelpers.cs
- ChangeInterceptorAttribute.cs
- RightsManagementEncryptionTransform.cs
- MasterPageBuildProvider.cs
- Point4DConverter.cs
- Math.cs
- SynchronizedDispatch.cs
- RegionData.cs
- SourceFilter.cs
- PerfCounters.cs
- RenderDataDrawingContext.cs
- Queue.cs
- DetailsViewDeleteEventArgs.cs
- SingleTagSectionHandler.cs
- SchemaSetCompiler.cs
- SoapEnumAttribute.cs
- TypeFieldSchema.cs
- Schema.cs
- SortDescriptionCollection.cs
- DbConvert.cs
- AsymmetricKeyExchangeFormatter.cs
- DesignBindingPicker.cs
- ProxyAssemblyNotLoadedException.cs
- QuerySetOp.cs
- DataStreams.cs
- CompositeDispatchFormatter.cs
- HttpProfileBase.cs
- RoleGroup.cs
- DataGridPreparingCellForEditEventArgs.cs
- SectionUpdates.cs
- Size3D.cs
- NameValueSectionHandler.cs
- CodeExpressionStatement.cs
- AbstractSvcMapFileLoader.cs
- httpapplicationstate.cs
- DocumentPage.cs
- PointHitTestResult.cs
- DataGridViewCellEventArgs.cs
- EventMappingSettings.cs
- XPathConvert.cs
- FormViewDeletedEventArgs.cs
- CheckedListBox.cs
- Group.cs
- OleDbCommandBuilder.cs
- DataServiceStreamProviderWrapper.cs
- Authorization.cs
- InvalidProgramException.cs
- FlowDocumentPageViewerAutomationPeer.cs
- EDesignUtil.cs
- Pkcs7Signer.cs
- Condition.cs
- ResourceReader.cs
- KnowledgeBase.cs
- ExpanderAutomationPeer.cs
- Effect.cs
- PersonalizationStateQuery.cs
- DBCommand.cs
- XpsImage.cs
- FormViewDesigner.cs
- DayRenderEvent.cs
- RelationHandler.cs
- TrustManagerPromptUI.cs
- RectangleConverter.cs
- HealthMonitoringSectionHelper.cs
- NativeDirectoryServicesQueryAPIs.cs
- __ConsoleStream.cs
- HandlerBase.cs
- XmlWrappingWriter.cs
- XmlSerializerSection.cs
- _Semaphore.cs
- SQLMoneyStorage.cs
- DrawingImage.cs
- ConfigurationSectionHelper.cs
- FileResponseElement.cs
- RevocationPoint.cs
- ListViewGroupConverter.cs
- EntityDataSourceContextCreatingEventArgs.cs
- SplitterPanel.cs
- DescendentsWalker.cs
- SmiEventSink_Default.cs
- TaskFormBase.cs
- AppSettingsExpressionEditor.cs
- ClientTargetSection.cs
- BindToObject.cs
- CodeNamespace.cs
- COM2AboutBoxPropertyDescriptor.cs
- CqlQuery.cs
- WSTrustFeb2005.cs
- EventLogTraceListener.cs