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
- PerformanceCounterPermissionEntryCollection.cs
- EntityContainer.cs
- XmlSchemaComplexType.cs
- Inline.cs
- PersonalizationStateInfoCollection.cs
- EDesignUtil.cs
- FixedPageAutomationPeer.cs
- AdornerDecorator.cs
- StatusBarAutomationPeer.cs
- SqlUtil.cs
- RequestDescription.cs
- errorpatternmatcher.cs
- ObjectView.cs
- MessageContractMemberAttribute.cs
- GridViewDeleteEventArgs.cs
- HtmlLink.cs
- ReferentialConstraint.cs
- ConfigurationValues.cs
- XPathAncestorIterator.cs
- LockRecursionException.cs
- BitStack.cs
- UIPropertyMetadata.cs
- HostingEnvironment.cs
- WinFormsComponentEditor.cs
- CharAnimationUsingKeyFrames.cs
- GeneralTransform3DGroup.cs
- RootBrowserWindowProxy.cs
- PassportAuthenticationEventArgs.cs
- DataServiceBehavior.cs
- EmbeddedObject.cs
- WebControlAdapter.cs
- RelativeSource.cs
- CalendarDesigner.cs
- CodeAssignStatement.cs
- Permission.cs
- SqlOuterApplyReducer.cs
- ProxyFragment.cs
- StorageComplexPropertyMapping.cs
- ReadingWritingEntityEventArgs.cs
- DataGridViewRowCollection.cs
- CopyNodeSetAction.cs
- CodeTypeReferenceExpression.cs
- BuildProviderAppliesToAttribute.cs
- MultipleViewPattern.cs
- ClrPerspective.cs
- VectorAnimationBase.cs
- CompilerResults.cs
- WindowsFormsDesignerOptionService.cs
- CharEntityEncoderFallback.cs
- AnchorEditor.cs
- RoleService.cs
- QuaternionAnimation.cs
- SequenceQuery.cs
- EditorBrowsableAttribute.cs
- ZipIOModeEnforcingStream.cs
- IsolatedStorageException.cs
- ScriptingWebServicesSectionGroup.cs
- HttpContextServiceHost.cs
- SynchronousReceiveElement.cs
- PeerCollaboration.cs
- Keywords.cs
- ActivationArguments.cs
- coordinator.cs
- WebPartTracker.cs
- DictionaryCustomTypeDescriptor.cs
- MenuRendererStandards.cs
- ExtendedProperty.cs
- _RequestCacheProtocol.cs
- BamlTreeMap.cs
- RepeaterDataBoundAdapter.cs
- HttpConfigurationContext.cs
- PageCatalogPart.cs
- XmlTextEncoder.cs
- DecodeHelper.cs
- AnyAllSearchOperator.cs
- Vector3DCollectionValueSerializer.cs
- ExplicitDiscriminatorMap.cs
- XsltException.cs
- M3DUtil.cs
- SelectiveScrollingGrid.cs
- listitem.cs
- SafeThreadHandle.cs
- ComEventsInfo.cs
- SessionIDManager.cs
- MsmqIntegrationMessagePool.cs
- XhtmlBasicCommandAdapter.cs
- VisualTreeUtils.cs
- WaitHandleCannotBeOpenedException.cs
- NotSupportedException.cs
- DBParameter.cs
- IdentifierCollection.cs
- HttpListenerContext.cs
- ReflectEventDescriptor.cs
- ListControl.cs
- SBCSCodePageEncoding.cs
- SelectionPattern.cs
- Instrumentation.cs
- HtmlLink.cs
- ConfigurationStrings.cs
- AsnEncodedData.cs