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;
///
///
/// Represents a snippet expression.
///
///
[
ClassInterface(ClassInterfaceType.AutoDispatch),
ComVisible(true),
Serializable,
]
public class CodeSnippetExpression : CodeExpression {
private string value;
///
///
/// Initializes a new instance of .
///
///
public CodeSnippetExpression() {
}
///
///
/// Initializes a new instance of using the specified snippet
/// expression.
///
///
public CodeSnippetExpression(string value) {
Value = value;
}
///
///
/// Gets or sets the snippet expression.
///
///
public string Value {
get {
return (value == null) ? string.Empty : value;
}
set {
this.value = value;
}
}
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TimeManager.cs
- RSAPKCS1SignatureFormatter.cs
- ObjectRef.cs
- Frame.cs
- TransformerInfo.cs
- DataAccessor.cs
- IList.cs
- CqlBlock.cs
- WindowsRegion.cs
- GridViewCommandEventArgs.cs
- SafeMemoryMappedViewHandle.cs
- WebPartTransformer.cs
- InertiaTranslationBehavior.cs
- Itemizer.cs
- RayHitTestParameters.cs
- SafeFileHandle.cs
- GeneralTransformCollection.cs
- SspiNegotiationTokenProviderState.cs
- CompleteWizardStep.cs
- ParserHooks.cs
- recordstatefactory.cs
- X509Utils.cs
- DefaultPrintController.cs
- Property.cs
- FormViewRow.cs
- Set.cs
- DesignerVerbCollection.cs
- ToolStripItemEventArgs.cs
- _PooledStream.cs
- ReadOnlyDictionary.cs
- DynamicResourceExtensionConverter.cs
- GridErrorDlg.cs
- ArrayHelper.cs
- PointAnimationUsingPath.cs
- TextElementEnumerator.cs
- FormatStringEditor.cs
- MediaElementAutomationPeer.cs
- PaperSize.cs
- XPathBuilder.cs
- CssStyleCollection.cs
- DataGridPagingPage.cs
- SafeRegistryHandle.cs
- ListMarkerLine.cs
- ColorTransform.cs
- _CookieModule.cs
- VectorCollectionConverter.cs
- ListViewInsertedEventArgs.cs
- DataGridViewTextBoxCell.cs
- MultilineStringConverter.cs
- CodeArrayCreateExpression.cs
- CodeCompileUnit.cs
- EmptyEnumerable.cs
- SplineKeyFrames.cs
- TagMapCollection.cs
- CodeConditionStatement.cs
- WebBrowserDesigner.cs
- BinaryParser.cs
- SqlTrackingWorkflowInstance.cs
- WinEventHandler.cs
- CharacterMetrics.cs
- DetailsViewRow.cs
- ErrorRuntimeConfig.cs
- ProjectionCamera.cs
- webbrowsersite.cs
- ProgressBar.cs
- XmlSerializerSection.cs
- IntSecurity.cs
- PlaceHolder.cs
- XPathCompileException.cs
- TypeUtil.cs
- PeerSecurityManager.cs
- AnimationClock.cs
- SevenBitStream.cs
- NoResizeHandleGlyph.cs
- GenericUriParser.cs
- DataGridViewComponentPropertyGridSite.cs
- TextHintingModeValidation.cs
- ExtendedPropertyCollection.cs
- MexServiceChannelBuilder.cs
- SqlClientFactory.cs
- ConfigurationLocation.cs
- DbProviderServices.cs
- UrlRoutingHandler.cs
- StorageMappingItemLoader.cs
- BinaryMethodMessage.cs
- SafeRightsManagementEnvironmentHandle.cs
- PowerModeChangedEventArgs.cs
- AlignmentYValidation.cs
- SqlStatistics.cs
- CategoryGridEntry.cs
- RenderDataDrawingContext.cs
- XmlSubtreeReader.cs
- Rectangle.cs
- securitycriticaldata.cs
- Style.cs
- ArgumentValidation.cs
- ScaleTransform3D.cs
- TextFindEngine.cs
- ProgressBarRenderer.cs
- XmlNamespaceManager.cs