Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeSnippetExpression.cs / 1 / CodeSnippetExpression.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 CodeSnippetExpression : CodeExpression { private string value; ////// Represents a snippet expression. /// ////// public CodeSnippetExpression() { } ////// Initializes a new instance of ///. /// /// public CodeSnippetExpression(string value) { Value = value; } ////// Initializes a new instance of ///using the specified snippet /// expression. /// /// public string Value { get { return (value == null) ? string.Empty : value; } set { this.value = value; } } } }/// Gets or sets the snippet expression. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RSAOAEPKeyExchangeFormatter.cs
- ParentControlDesigner.cs
- HttpCapabilitiesEvaluator.cs
- BitmapCacheBrush.cs
- ConnectionManagementSection.cs
- BindToObject.cs
- AuthenticationException.cs
- XPathDocument.cs
- WebPartManagerInternals.cs
- StrokeCollection2.cs
- ScriptingWebServicesSectionGroup.cs
- TrackBarRenderer.cs
- QuaternionConverter.cs
- PropertyIDSet.cs
- ProxyManager.cs
- MessageSecurityOverMsmq.cs
- ToolStripContentPanelDesigner.cs
- base64Transforms.cs
- HttpAsyncResult.cs
- CommonXSendMessage.cs
- TypeConverterValueSerializer.cs
- DataConnectionHelper.cs
- SyndicationElementExtension.cs
- ListenerElementsCollection.cs
- AuthorizationContext.cs
- arabicshape.cs
- RootBrowserWindowProxy.cs
- VirtualizingStackPanel.cs
- LogicalTreeHelper.cs
- MethodRental.cs
- Sequence.cs
- DefaultEvaluationContext.cs
- XmlElement.cs
- ControlEvent.cs
- Font.cs
- PeerNodeAddress.cs
- SqlCharStream.cs
- TypefaceCollection.cs
- ControlAdapter.cs
- Identity.cs
- MenuScrollingVisibilityConverter.cs
- SwitchAttribute.cs
- ConfigurationManagerInternal.cs
- Compiler.cs
- RSATokenProvider.cs
- ColorInterpolationModeValidation.cs
- RewritingPass.cs
- MethodBuilder.cs
- LineBreak.cs
- DataService.cs
- MsdtcClusterUtils.cs
- WorkflowWebHostingModule.cs
- NavigatorInput.cs
- InternalUserCancelledException.cs
- RoutedEvent.cs
- ButtonBaseAdapter.cs
- ContextMenuStripActionList.cs
- ExpressionSelection.cs
- HwndStylusInputProvider.cs
- QueryExpression.cs
- XmlSchemaExporter.cs
- Debug.cs
- StoreUtilities.cs
- DbProviderConfigurationHandler.cs
- AxParameterData.cs
- SafeProcessHandle.cs
- SimpleParser.cs
- List.cs
- Shape.cs
- ImageKeyConverter.cs
- HttpRawResponse.cs
- BaseTemplateBuildProvider.cs
- CodeLabeledStatement.cs
- StatusBar.cs
- BasicHttpSecurity.cs
- DBCSCodePageEncoding.cs
- MasterPageParser.cs
- IisTraceWebEventProvider.cs
- X509Utils.cs
- PartitionResolver.cs
- Highlights.cs
- DataGridViewRowStateChangedEventArgs.cs
- WebBrowsableAttribute.cs
- EditorPart.cs
- SlipBehavior.cs
- DataSourceControl.cs
- CacheRequest.cs
- Message.cs
- DefaultValueAttribute.cs
- RefType.cs
- ValueQuery.cs
- TextEditorParagraphs.cs
- GeometryHitTestResult.cs
- StickyNoteAnnotations.cs
- PageHandlerFactory.cs
- FreezableCollection.cs
- HostingEnvironment.cs
- ToolZone.cs
- SettingsPropertyValue.cs
- ReadWriteSpinLock.cs