Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / Microsoft / Scripting / Ast / LabelTarget.cs / 1305376 / LabelTarget.cs
/* ****************************************************************************
*
* Copyright (c) Microsoft Corporation.
*
* This source code is subject to terms and conditions of the Microsoft Public License. A
* copy of the license can be found in the License.html file at the root of this distribution. If
* you cannot locate the Microsoft Public License, please send an email to
* dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
* by the terms of the Microsoft Public License.
*
* You must not remove this notice, or any other, from this software.
*
*
* ***************************************************************************/
using System.Dynamic.Utils;
namespace System.Linq.Expressions {
///
/// Used to denote the target of a .
///
public sealed class LabelTarget {
private readonly Type _type;
private readonly string _name;
internal LabelTarget(Type type, string name) {
_type = type;
_name = name;
}
///
/// Gets the name of the label.
///
/// The label's name is provided for information purposes only.
public string Name {
get { return _name; }
}
///
/// The type of value that is passed when jumping to the label
/// (or System.Void if no value should be passed).
///
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1721:PropertyNamesShouldNotMatchGetMethods")]
public Type Type {
get { return _type; }
}
///
/// Returns a that represents the current .
///
/// A that represents the current .
public override string ToString() {
return String.IsNullOrEmpty(this.Name) ? "UnamedLabel" : this.Name;
}
}
public partial class Expression {
///
/// Creates a representing a label with void type and no name.
///
/// The new .
public static LabelTarget Label() {
return Label(typeof(void), null);
}
///
/// Creates a representing a label with void type and the given name.
///
/// The name of the label.
/// The new .
public static LabelTarget Label(string name) {
return Label(typeof(void), name);
}
///
/// Creates a representing a label with the given type.
///
/// The type of value that is passed when jumping to the label.
/// The new .
public static LabelTarget Label(Type type) {
return Label(type, null);
}
///
/// Creates a representing a label with the given type and name.
///
/// The type of value that is passed when jumping to the label.
/// The name of the label.
/// The new .
public static LabelTarget Label(Type type, string name) {
ContractUtils.RequiresNotNull(type, "type");
TypeUtils.ValidateType(type);
return new LabelTarget(type, name);
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataObjectPastingEventArgs.cs
- CodeIdentifiers.cs
- CodeSnippetCompileUnit.cs
- ButtonAutomationPeer.cs
- Inline.cs
- BitmapEffectvisualstate.cs
- ReflectTypeDescriptionProvider.cs
- ChangeTracker.cs
- SerializationInfo.cs
- MetadataCache.cs
- StrongName.cs
- CodeTypeOfExpression.cs
- KeySpline.cs
- ConsumerConnectionPoint.cs
- TabControlCancelEvent.cs
- WebException.cs
- PersistenceMetadataNamespace.cs
- DataTable.cs
- ConstructorBuilder.cs
- ReachPageContentCollectionSerializerAsync.cs
- DateTimeConstantAttribute.cs
- ExecutionEngineException.cs
- ExpressionReplacer.cs
- FontUnit.cs
- HttpModuleAction.cs
- ClientRuntimeConfig.cs
- ReadOnlyHierarchicalDataSourceView.cs
- RowType.cs
- ActivityDefaults.cs
- SafeRegistryHandle.cs
- TabControl.cs
- IdentityManager.cs
- XmlHierarchicalEnumerable.cs
- RootBuilder.cs
- XXXOnTypeBuilderInstantiation.cs
- LeftCellWrapper.cs
- PathNode.cs
- RoutedEventValueSerializer.cs
- XmlMemberMapping.cs
- XmlSerializerSection.cs
- ActivityTypeCodeDomSerializer.cs
- WindowsListBox.cs
- VersionPair.cs
- _SingleItemRequestCache.cs
- XmlAutoDetectWriter.cs
- SelectionUIService.cs
- SimpleType.cs
- ToolStrip.cs
- LockCookie.cs
- Line.cs
- PropertyFilterAttribute.cs
- WindowsScrollBar.cs
- SemanticTag.cs
- WindowsButton.cs
- HttpWriter.cs
- DataSourceNameHandler.cs
- EntityConnection.cs
- DateTimeConstantAttribute.cs
- DescendantOverDescendantQuery.cs
- AsymmetricKeyExchangeDeformatter.cs
- GlyphInfoList.cs
- Lease.cs
- CompositeTypefaceMetrics.cs
- ProcessHost.cs
- ColorBlend.cs
- BitmapScalingModeValidation.cs
- SHA384.cs
- WorkflowInstanceExtensionCollection.cs
- LinqDataSourceEditData.cs
- ViewManager.cs
- PrinterUnitConvert.cs
- DefaultAsyncDataDispatcher.cs
- BaseDataList.cs
- SqlConnectionPoolGroupProviderInfo.cs
- HttpWriter.cs
- BaseCollection.cs
- JsonWriterDelegator.cs
- BinaryFormatterWriter.cs
- DesignerCapabilities.cs
- SecurityValidationBehavior.cs
- SerializationSectionGroup.cs
- MimeTypePropertyAttribute.cs
- GacUtil.cs
- unitconverter.cs
- PageRequestManager.cs
- TreeBuilder.cs
- NamedPipeChannelListener.cs
- SelectionService.cs
- OracleConnection.cs
- TypeFieldSchema.cs
- UseLicense.cs
- WebBrowserDocumentCompletedEventHandler.cs
- GridView.cs
- BamlRecords.cs
- ProtectedConfiguration.cs
- TypographyProperties.cs
- XmlDocumentFieldSchema.cs
- remotingproxy.cs
- OrthographicCamera.cs
- HtmlToClrEventProxy.cs