Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / Microsoft / Scripting / Utils / ContractUtils.cs / 1305376 / ContractUtils.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.Collections.Generic;
using System.Diagnostics;
using System.Linq.Expressions;
#if SILVERLIGHT
using System.Core;
#endif
namespace System.Dynamic.Utils {
// Will be replaced with CLRv4 managed contracts
internal static class ContractUtils {
internal static Exception Unreachable {
get {
Debug.Assert(false, "Unreachable");
return new InvalidOperationException("Code supposed to be unreachable");
}
}
internal static void Requires(bool precondition) {
if (!precondition) {
throw new ArgumentException(Strings.MethodPreconditionViolated);
}
}
internal static void Requires(bool precondition, string paramName) {
Debug.Assert(!string.IsNullOrEmpty(paramName));
if (!precondition) {
throw new ArgumentException(Strings.InvalidArgumentValue, paramName);
}
}
internal static void RequiresNotNull(object value, string paramName) {
Debug.Assert(!string.IsNullOrEmpty(paramName));
if (value == null) {
throw new ArgumentNullException(paramName);
}
}
internal static void RequiresNotEmpty(ICollection collection, string paramName) {
RequiresNotNull(collection, paramName);
if (collection.Count == 0) {
throw new ArgumentException(Strings.NonEmptyCollectionRequired, paramName);
}
}
///
/// Requires the range [offset, offset + count] to be a subset of [0, array.Count].
///
/// Array is null .
/// Offset or count are out of range.
internal static void RequiresArrayRange(IList array, int offset, int count, string offsetName, string countName) {
Debug.Assert(!string.IsNullOrEmpty(offsetName));
Debug.Assert(!string.IsNullOrEmpty(countName));
Debug.Assert(array != null);
if (count < 0) throw new ArgumentOutOfRangeException(countName);
if (offset < 0 || array.Count - offset < count) throw new ArgumentOutOfRangeException(offsetName);
}
///
/// Requires the array and all its items to be non-null.
///
internal static void RequiresNotNullItems(IList array, string arrayName) {
Debug.Assert(arrayName != null);
RequiresNotNull(array, arrayName);
for (int i = 0; i < array.Count; i++) {
if (array[i] == null) {
throw new ArgumentNullException(string.Format(System.Globalization.CultureInfo.CurrentCulture, "{0}[{1}]", arrayName, i));
}
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
/* ****************************************************************************
*
* 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.Collections.Generic;
using System.Diagnostics;
using System.Linq.Expressions;
#if SILVERLIGHT
using System.Core;
#endif
namespace System.Dynamic.Utils {
// Will be replaced with CLRv4 managed contracts
internal static class ContractUtils {
internal static Exception Unreachable {
get {
Debug.Assert(false, "Unreachable");
return new InvalidOperationException("Code supposed to be unreachable");
}
}
internal static void Requires(bool precondition) {
if (!precondition) {
throw new ArgumentException(Strings.MethodPreconditionViolated);
}
}
internal static void Requires(bool precondition, string paramName) {
Debug.Assert(!string.IsNullOrEmpty(paramName));
if (!precondition) {
throw new ArgumentException(Strings.InvalidArgumentValue, paramName);
}
}
internal static void RequiresNotNull(object value, string paramName) {
Debug.Assert(!string.IsNullOrEmpty(paramName));
if (value == null) {
throw new ArgumentNullException(paramName);
}
}
internal static void RequiresNotEmpty(ICollection collection, string paramName) {
RequiresNotNull(collection, paramName);
if (collection.Count == 0) {
throw new ArgumentException(Strings.NonEmptyCollectionRequired, paramName);
}
}
///
/// Requires the range [offset, offset + count] to be a subset of [0, array.Count].
///
/// Array is null .
/// Offset or count are out of range.
internal static void RequiresArrayRange(IList array, int offset, int count, string offsetName, string countName) {
Debug.Assert(!string.IsNullOrEmpty(offsetName));
Debug.Assert(!string.IsNullOrEmpty(countName));
Debug.Assert(array != null);
if (count < 0) throw new ArgumentOutOfRangeException(countName);
if (offset < 0 || array.Count - offset < count) throw new ArgumentOutOfRangeException(offsetName);
}
///
/// Requires the array and all its items to be non-null.
///
internal static void RequiresNotNullItems(IList array, string arrayName) {
Debug.Assert(arrayName != null);
RequiresNotNull(array, arrayName);
for (int i = 0; i < array.Count; i++) {
if (array[i] == null) {
throw new ArgumentNullException(string.Format(System.Globalization.CultureInfo.CurrentCulture, "{0}[{1}]", arrayName, i));
}
}
}
}
}
// 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
- WebPartEventArgs.cs
- RuntimeCompatibilityAttribute.cs
- BindingsCollection.cs
- WindowsGraphics.cs
- IxmlLineInfo.cs
- Models.cs
- CodeDelegateInvokeExpression.cs
- NonVisualControlAttribute.cs
- MasterPage.cs
- TypedTableBaseExtensions.cs
- TextTreeObjectNode.cs
- ScrollableControl.cs
- RewritingValidator.cs
- TabControlEvent.cs
- SByteStorage.cs
- XPathNavigator.cs
- NetCodeGroup.cs
- StubHelpers.cs
- StreamUpgradeAcceptor.cs
- RuleAttributes.cs
- ObjectAssociationEndMapping.cs
- PolyBezierSegmentFigureLogic.cs
- unsafenativemethodsother.cs
- MailWebEventProvider.cs
- Image.cs
- TextBoxAutomationPeer.cs
- ApplicationDirectoryMembershipCondition.cs
- DataContractSerializerElement.cs
- MethodBuilder.cs
- DataKey.cs
- AxWrapperGen.cs
- Vector3DAnimationBase.cs
- DataGridTextBoxColumn.cs
- TextElementCollection.cs
- CompensableActivity.cs
- HttpGetProtocolReflector.cs
- MimeTypePropertyAttribute.cs
- WebPartsSection.cs
- Set.cs
- ColumnMapVisitor.cs
- DebugTracing.cs
- PaintEvent.cs
- MessageSecurityOverHttp.cs
- XmlLoader.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- XsltLibrary.cs
- MetadataConversionError.cs
- RawStylusInputCustomData.cs
- WindowsProgressbar.cs
- TableLayout.cs
- RSAProtectedConfigurationProvider.cs
- BinaryReader.cs
- ICspAsymmetricAlgorithm.cs
- StringAnimationBase.cs
- CompilerCollection.cs
- XPathNavigatorReader.cs
- ThreadLocal.cs
- TimestampInformation.cs
- COM2PropertyPageUITypeConverter.cs
- SoapExtensionTypeElement.cs
- DirectionalLight.cs
- TrackingProfileSerializer.cs
- ChoiceConverter.cs
- PropertyGridEditorPart.cs
- TextDecorationLocationValidation.cs
- UnrecognizedPolicyAssertionElement.cs
- CodeConditionStatement.cs
- TextShapeableCharacters.cs
- MediaScriptCommandRoutedEventArgs.cs
- ListItemsPage.cs
- XmlSubtreeReader.cs
- HtmlEmptyTagControlBuilder.cs
- CompositeTypefaceMetrics.cs
- CodeIdentifier.cs
- BamlBinaryWriter.cs
- RubberbandSelector.cs
- PropertyMapper.cs
- GridViewColumnHeaderAutomationPeer.cs
- NotEqual.cs
- MSAAWinEventWrap.cs
- CachedTypeface.cs
- RangeValueProviderWrapper.cs
- HtmlTableCell.cs
- SnapLine.cs
- SqlDataSourceCache.cs
- GeometryHitTestParameters.cs
- WorkflowIdleBehavior.cs
- ThreadAttributes.cs
- OrderByBuilder.cs
- WsatServiceCertificate.cs
- TypeSystemHelpers.cs
- CustomBindingCollectionElement.cs
- PagePropertiesChangingEventArgs.cs
- IntranetCredentialPolicy.cs
- HtmlHistory.cs
- XPathAncestorQuery.cs
- SpellerInterop.cs
- Psha1DerivedKeyGeneratorHelper.cs
- PersistChildrenAttribute.cs
- EntityDataSourceContainerNameItem.cs