Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / CodeDOM / CodeCastExpression.cs / 1 / CodeCastExpression.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 CodeCastExpression : CodeExpression { private CodeTypeReference targetType; private CodeExpression expression; ////// Represents a /// type cast expression. /// ////// public CodeCastExpression() { } ////// Initializes a new instance of ///. /// /// public CodeCastExpression(CodeTypeReference targetType, CodeExpression expression) { TargetType = targetType; Expression = expression; } ////// Initializes a new instance of ///using the specified /// parameters. /// /// public CodeCastExpression(string targetType, CodeExpression expression) { TargetType = new CodeTypeReference(targetType); Expression = expression; } ///[To be supplied.] ////// public CodeCastExpression(Type targetType, CodeExpression expression) { TargetType = new CodeTypeReference(targetType); Expression = expression; } ///[To be supplied.] ////// public CodeTypeReference TargetType { get { if (targetType == null) { targetType = new CodeTypeReference(""); } return targetType; } set { targetType = value; } } ////// The target type of the cast. /// ////// public CodeExpression Expression { get { return expression; } set { expression = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// The expression to cast. /// ///// 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 CodeCastExpression : CodeExpression { private CodeTypeReference targetType; private CodeExpression expression; ////// Represents a /// type cast expression. /// ////// public CodeCastExpression() { } ////// Initializes a new instance of ///. /// /// public CodeCastExpression(CodeTypeReference targetType, CodeExpression expression) { TargetType = targetType; Expression = expression; } ////// Initializes a new instance of ///using the specified /// parameters. /// /// public CodeCastExpression(string targetType, CodeExpression expression) { TargetType = new CodeTypeReference(targetType); Expression = expression; } ///[To be supplied.] ////// public CodeCastExpression(Type targetType, CodeExpression expression) { TargetType = new CodeTypeReference(targetType); Expression = expression; } ///[To be supplied.] ////// public CodeTypeReference TargetType { get { if (targetType == null) { targetType = new CodeTypeReference(""); } return targetType; } set { targetType = value; } } ////// The target type of the cast. /// ////// public CodeExpression Expression { get { return expression; } set { expression = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// The expression to cast. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataGridViewCellStyle.cs
- TypedDataSourceCodeGenerator.cs
- ValueSerializer.cs
- AttributeQuery.cs
- MimeMultiPart.cs
- LockedBorderGlyph.cs
- AvTraceDetails.cs
- PageTheme.cs
- KeyValueSerializer.cs
- DataServiceQueryProvider.cs
- TextBlockAutomationPeer.cs
- ContainerUtilities.cs
- PersonalizationAdministration.cs
- SqlFactory.cs
- PropertyFilterAttribute.cs
- FormsAuthenticationModule.cs
- WindowAutomationPeer.cs
- Cursors.cs
- XmlWrappingReader.cs
- AmbientValueAttribute.cs
- ClaimTypeRequirement.cs
- MetadataArtifactLoaderComposite.cs
- DecimalFormatter.cs
- ConnectionManagementElement.cs
- CodePrimitiveExpression.cs
- HttpCapabilitiesSectionHandler.cs
- ReadOnlyHierarchicalDataSourceView.cs
- XmlSchemaAttributeGroupRef.cs
- DirectoryNotFoundException.cs
- Itemizer.cs
- _SpnDictionary.cs
- LineServices.cs
- EdmToObjectNamespaceMap.cs
- CustomErrorsSection.cs
- LinkedResource.cs
- ObjectConverter.cs
- Vector3D.cs
- ClientSettingsStore.cs
- Bits.cs
- ProcessingInstructionAction.cs
- NameValueFileSectionHandler.cs
- ReferenceAssemblyAttribute.cs
- TogglePatternIdentifiers.cs
- TableRow.cs
- LinkedResource.cs
- SamlDelegatingWriter.cs
- BlockUIContainer.cs
- AppSettingsReader.cs
- Timer.cs
- ImportStoreException.cs
- MoveSizeWinEventHandler.cs
- EventDescriptor.cs
- PropertyChangedEventManager.cs
- ObjectDataSourceWizardForm.cs
- BrowserCapabilitiesFactory.cs
- State.cs
- ADRoleFactoryConfiguration.cs
- BrushValueSerializer.cs
- IndividualDeviceConfig.cs
- CmsInterop.cs
- DesignTimeTemplateParser.cs
- CollectionBase.cs
- UndoManager.cs
- DbProviderFactoriesConfigurationHandler.cs
- CorrelationQuery.cs
- WorkflowOperationErrorHandler.cs
- SettingsBindableAttribute.cs
- SecureConversationDriver.cs
- LineServices.cs
- StrokeNodeOperations2.cs
- ImageListImageEditor.cs
- ConnectionStringSettings.cs
- BindingValueChangedEventArgs.cs
- X509CertificateClaimSet.cs
- ArcSegment.cs
- ImageListImage.cs
- TextLine.cs
- ReflectPropertyDescriptor.cs
- WindowsHyperlink.cs
- GPPOINT.cs
- IteratorDescriptor.cs
- AppDomainAttributes.cs
- TransportOutputChannel.cs
- UITypeEditors.cs
- VScrollProperties.cs
- Animatable.cs
- DataGridViewColumnHeaderCell.cs
- OneToOneMappingSerializer.cs
- BooleanToSelectiveScrollingOrientationConverter.cs
- CommonDialog.cs
- MenuCommand.cs
- Peer.cs
- CompiledXpathExpr.cs
- TreeNodeCollectionEditorDialog.cs
- NativeStructs.cs
- DataBinder.cs
- CachedPathData.cs
- SmtpClient.cs
- ImageFormatConverter.cs
- ParseNumbers.cs