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
- smtpconnection.cs
- TableLayoutColumnStyleCollection.cs
- DataContractSerializerOperationGenerator.cs
- SQlBooleanStorage.cs
- CustomPeerResolverService.cs
- LifetimeServices.cs
- GetImportFileNameRequest.cs
- ConsoleEntryPoint.cs
- CallbackTimeoutsElement.cs
- ReadOnlyDictionary.cs
- AssemblyCollection.cs
- TraceContextEventArgs.cs
- HttpClientCertificate.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- NegotiateStream.cs
- GregorianCalendar.cs
- Localizer.cs
- XmlTextWriter.cs
- EncodingDataItem.cs
- TypeLibConverter.cs
- OrderedDictionaryStateHelper.cs
- BufferedReadStream.cs
- RotateTransform3D.cs
- XmlValidatingReader.cs
- CurrentChangingEventArgs.cs
- TextInfo.cs
- DataKeyPropertyAttribute.cs
- Point4D.cs
- HttpResponseInternalWrapper.cs
- SSmlParser.cs
- GACIdentityPermission.cs
- TypedReference.cs
- SrgsRuleRef.cs
- CompilerResults.cs
- TypeDependencyAttribute.cs
- OptimalBreakSession.cs
- PixelFormat.cs
- SQLBytes.cs
- DataGridRelationshipRow.cs
- URIFormatException.cs
- WebPartDescription.cs
- XpsException.cs
- ColorInterpolationModeValidation.cs
- Int32Rect.cs
- TextProviderWrapper.cs
- SemaphoreSecurity.cs
- DataViewManagerListItemTypeDescriptor.cs
- ItemContainerProviderWrapper.cs
- HandlerBase.cs
- TextTrailingCharacterEllipsis.cs
- WebPartMenuStyle.cs
- PersistenceParticipant.cs
- DesignTimeHTMLTextWriter.cs
- PartitionResolver.cs
- XmlQueryOutput.cs
- CompositeClientFormatter.cs
- ContextConfiguration.cs
- DynamicValidatorEventArgs.cs
- OpenFileDialog.cs
- AdornerPresentationContext.cs
- AdornerPresentationContext.cs
- DataPagerFieldCollection.cs
- RepeatBehavior.cs
- CustomAttribute.cs
- QueryOptionExpression.cs
- MsmqProcessProtocolHandler.cs
- HuffCodec.cs
- PropertyBuilder.cs
- XmlName.cs
- EmissiveMaterial.cs
- Version.cs
- RelationshipWrapper.cs
- ReplacementText.cs
- shaperfactoryquerycachekey.cs
- SemanticBasicElement.cs
- Thickness.cs
- FaultPropagationRecord.cs
- VirtualizedItemPattern.cs
- IteratorFilter.cs
- TraceLevelHelper.cs
- ParameterModifier.cs
- GacUtil.cs
- NativeBuffer.cs
- Renderer.cs
- SpeechDetectedEventArgs.cs
- IndentedWriter.cs
- StylusPointPropertyInfo.cs
- ConfigUtil.cs
- SizeValueSerializer.cs
- CompilationPass2Task.cs
- MarkupCompilePass2.cs
- MouseBinding.cs
- DataGridPagerStyle.cs
- CurrencyManager.cs
- HandleExceptionArgs.cs
- HtmlTextBoxAdapter.cs
- _UriTypeConverter.cs
- ProfileInfo.cs
- ValidationErrorCollection.cs
- Point3DValueSerializer.cs