Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WCF / Log / System / IO / Log / PolicyUnit.cs / 1305376 / PolicyUnit.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.IO.Log { using System; using System.Globalization; public struct PolicyUnit { PolicyUnitType type; long value; public PolicyUnit(long value, PolicyUnitType type) { if (type == PolicyUnitType.Percentage) { if ((value < 0) || (value > 100)) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(Error.ArgumentOutOfRange("value")); } else if (type == PolicyUnitType.Extents) { if (value < 0) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(Error.ArgumentOutOfRange("value")); } else { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(Error.ArgumentOutOfRange("type")); } this.type = type; this.value = value; } public PolicyUnitType Type { get { return this.type; } } public long Value { get { return this.value; } } public override int GetHashCode() { return (this.type.GetHashCode() ^ this.value.GetHashCode()); } public override bool Equals(object obj) { if (!(obj is PolicyUnit)) return false; PolicyUnit other = (PolicyUnit)(obj); return this == other; } public static bool operator ==(PolicyUnit left, PolicyUnit right) { return ((left.type == right.type) && (left.value == right.value)); } public static bool operator !=(PolicyUnit left, PolicyUnit right) { return !(left == right); } public static PolicyUnit Percentage(long value) { return new PolicyUnit(value, PolicyUnitType.Percentage); } public static PolicyUnit Extents(long value) { return new PolicyUnit(value, PolicyUnitType.Extents); } public override string ToString() { if (this.type == PolicyUnitType.Percentage) { return SR.GetString(SR.PolicyUnit_Percent, this.value); } else { return SR.GetString(SR.PolicyUnit_Extents, this.value); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.IO.Log { using System; using System.Globalization; public struct PolicyUnit { PolicyUnitType type; long value; public PolicyUnit(long value, PolicyUnitType type) { if (type == PolicyUnitType.Percentage) { if ((value < 0) || (value > 100)) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(Error.ArgumentOutOfRange("value")); } else if (type == PolicyUnitType.Extents) { if (value < 0) throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(Error.ArgumentOutOfRange("value")); } else { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(Error.ArgumentOutOfRange("type")); } this.type = type; this.value = value; } public PolicyUnitType Type { get { return this.type; } } public long Value { get { return this.value; } } public override int GetHashCode() { return (this.type.GetHashCode() ^ this.value.GetHashCode()); } public override bool Equals(object obj) { if (!(obj is PolicyUnit)) return false; PolicyUnit other = (PolicyUnit)(obj); return this == other; } public static bool operator ==(PolicyUnit left, PolicyUnit right) { return ((left.type == right.type) && (left.value == right.value)); } public static bool operator !=(PolicyUnit left, PolicyUnit right) { return !(left == right); } public static PolicyUnit Percentage(long value) { return new PolicyUnit(value, PolicyUnitType.Percentage); } public static PolicyUnit Extents(long value) { return new PolicyUnit(value, PolicyUnitType.Extents); } public override string ToString() { if (this.type == PolicyUnitType.Percentage) { return SR.GetString(SR.PolicyUnit_Percent, this.value); } else { return SR.GetString(SR.PolicyUnit_Extents, this.value); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PolyQuadraticBezierSegment.cs
- EmbeddedMailObjectsCollection.cs
- DynamicUpdateCommand.cs
- FusionWrap.cs
- ReachDocumentReferenceSerializer.cs
- DeferredSelectedIndexReference.cs
- WebPartTracker.cs
- ArgumentElement.cs
- IdentifierService.cs
- SplitterPanel.cs
- DesignerLabelAdapter.cs
- ToolStripContainer.cs
- AlphaSortedEnumConverter.cs
- GuidelineCollection.cs
- RIPEMD160.cs
- HostingEnvironmentException.cs
- XmlDownloadManager.cs
- filewebresponse.cs
- ValidatingPropertiesEventArgs.cs
- DataControlImageButton.cs
- TextDecorationUnitValidation.cs
- EllipseGeometry.cs
- HttpApplication.cs
- UnwrappedTypesXmlSerializerManager.cs
- Propagator.JoinPropagator.SubstitutingCloneVisitor.cs
- AutomationPropertyInfo.cs
- WebRequest.cs
- BinHexDecoder.cs
- Util.cs
- HttpWebResponse.cs
- loginstatus.cs
- TransformerInfoCollection.cs
- DispatcherTimer.cs
- ViewKeyConstraint.cs
- Brushes.cs
- TraceContextRecord.cs
- EpmSourceTree.cs
- CompilerLocalReference.cs
- ExtensibleClassFactory.cs
- NumericPagerField.cs
- ToolStripDropDownMenu.cs
- MsmqProcessProtocolHandler.cs
- AspProxy.cs
- XmlBinaryReaderSession.cs
- ToolBarButtonDesigner.cs
- XmlSerializationReader.cs
- HtmlSelect.cs
- TypeUtil.cs
- PenContext.cs
- ServicePoint.cs
- PartialClassGenerationTask.cs
- CompositeDataBoundControl.cs
- SessionStateModule.cs
- InvokeProviderWrapper.cs
- MessageFormatterConverter.cs
- ConvertEvent.cs
- COM2Properties.cs
- DataChangedEventManager.cs
- MeasurementDCInfo.cs
- ExpressionBinding.cs
- XamlPoint3DCollectionSerializer.cs
- basevalidator.cs
- ClassImporter.cs
- TableCellCollection.cs
- ObjectTag.cs
- DrawingContextDrawingContextWalker.cs
- ClientEventManager.cs
- SafeBitVector32.cs
- EventLogger.cs
- SqlAliasesReferenced.cs
- Rotation3DKeyFrameCollection.cs
- PictureBoxDesigner.cs
- RotateTransform.cs
- MessageDecoder.cs
- ServicesUtilities.cs
- ImageIndexConverter.cs
- SerTrace.cs
- XmlSchemaSimpleTypeList.cs
- DataBindingCollectionConverter.cs
- SystemUdpStatistics.cs
- MailAddress.cs
- _SingleItemRequestCache.cs
- WindowsToolbarItemAsMenuItem.cs
- AutomationPatternInfo.cs
- Brushes.cs
- ConfigurationValidatorAttribute.cs
- CodeStatementCollection.cs
- HiddenField.cs
- AllMembershipCondition.cs
- Size.cs
- OutputCacheProfileCollection.cs
- XmlQueryTypeFactory.cs
- RegisteredHiddenField.cs
- Timer.cs
- ScriptResourceDefinition.cs
- WindowsAuthenticationEventArgs.cs
- LogReservationCollection.cs
- FloaterParagraph.cs
- CacheOutputQuery.cs
- xsdvalidator.cs