Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets the type to reference. /// ///// 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; } } } } // 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
- MarkedHighlightComponent.cs
- SplashScreen.cs
- Convert.cs
- DataObject.cs
- SingleConverter.cs
- ObjectViewEntityCollectionData.cs
- TreeNodeSelectionProcessor.cs
- MetafileHeaderWmf.cs
- PropertyInformation.cs
- HashUtility.cs
- WhiteSpaceTrimStringConverter.cs
- RelatedView.cs
- CacheDependency.cs
- ByteArrayHelperWithString.cs
- SetterBase.cs
- PropertyInfo.cs
- DataGridViewCellFormattingEventArgs.cs
- UserControlAutomationPeer.cs
- XmlText.cs
- MouseButton.cs
- DbDataAdapter.cs
- SqlExpander.cs
- CheckBoxPopupAdapter.cs
- TableSectionStyle.cs
- GroupItem.cs
- WebPartConnectionsConnectVerb.cs
- TableFieldsEditor.cs
- EpmContentSerializer.cs
- BoundConstants.cs
- _ServiceNameStore.cs
- XmlElementAttribute.cs
- XPathScanner.cs
- RectangleHotSpot.cs
- DiscoveryMessageSequence.cs
- DiscriminatorMap.cs
- SafeFindHandle.cs
- AttributeProviderAttribute.cs
- PrivilegedConfigurationManager.cs
- SessionStateContainer.cs
- LowerCaseStringConverter.cs
- AssemblyAttributes.cs
- CodeNamespaceCollection.cs
- HttpListenerPrefixCollection.cs
- UserNamePasswordClientCredential.cs
- SortKey.cs
- SeekableReadStream.cs
- Compiler.cs
- DataGridViewColumnCollection.cs
- DataGridViewDataConnection.cs
- Clock.cs
- RemotingConfiguration.cs
- RoleGroupCollection.cs
- DecimalKeyFrameCollection.cs
- Point3D.cs
- EncryptedReference.cs
- MessageContractMemberAttribute.cs
- RichTextBoxConstants.cs
- StylusDevice.cs
- ValidationHelper.cs
- RegexStringValidatorAttribute.cs
- HttpInputStream.cs
- IndicCharClassifier.cs
- TextAction.cs
- AlgoModule.cs
- AcceleratedTokenProviderState.cs
- ConstraintManager.cs
- DesignConnection.cs
- ProvidersHelper.cs
- TemplateComponentConnector.cs
- ICspAsymmetricAlgorithm.cs
- HttpHandlerAction.cs
- TypeReference.cs
- OLEDB_Enum.cs
- HttpResponse.cs
- CommentGlyph.cs
- WindowsSysHeader.cs
- Win32Interop.cs
- StackBuilderSink.cs
- MultiSelector.cs
- DataSourceListEditor.cs
- ServiceModelEnumValidator.cs
- FrameworkElementFactory.cs
- XdrBuilder.cs
- XmlEntityReference.cs
- Command.cs
- GeometryHitTestResult.cs
- KeyValueConfigurationElement.cs
- SqlProfileProvider.cs
- Peer.cs
- StoreAnnotationsMap.cs
- TypeInfo.cs
- RowToFieldTransformer.cs
- CancellableEnumerable.cs
- ForeignConstraint.cs
- CatalogPartCollection.cs
- WebPartConnectVerb.cs
- IdnMapping.cs
- OleDbDataAdapter.cs
- RijndaelCryptoServiceProvider.cs
- AssociationProvider.cs