Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / textformatting / CharacterString.cs / 1 / CharacterString.cs
//------------------------------------------------------------------------ // // Microsoft Windows Client Platform // Copyright (C) Microsoft Corporation, 2003 // // File: CharacterBufferRange.cs // // Contents: A range of character buffer // // Spec: [....]/sites/Avalon/Specs/Text%20Formatting%20API.doc // // Created: 2-5-2004 [....] ([....]) // //----------------------------------------------------------------------- using System; using System.Diagnostics; using System.Security; using MS.Internal; using SR = MS.Internal.PresentationCore.SR; using SRID = MS.Internal.PresentationCore.SRID; namespace System.Windows.Media.TextFormatting { ////// A string of characters /// public struct CharacterBufferRange : IEquatable{ private CharacterBufferReference _charBufferRef; private int _length; #region Constructor /// /// Construct character buffer reference from character array /// /// character array /// character buffer offset to the first character /// character length public CharacterBufferRange( char[] characterArray, int offsetToFirstChar, int characterLength ) : this( new CharacterBufferReference(characterArray, offsetToFirstChar), characterLength ) {} ////// Construct character buffer reference from string /// /// character string /// character buffer offset to the first character /// character length public CharacterBufferRange( string characterString, int offsetToFirstChar, int characterLength ) : this( new CharacterBufferReference(characterString, offsetToFirstChar), characterLength ) {} ////// Construct character buffer reference from unsafe character string /// /// pointer to character string /// character length ////// Critical: this stores a pointer to an unmanaged string of characters /// PublicOK: The caller needs unmanaged code permission in order to pass unsafe pointers to us. /// [SecurityCritical] [CLSCompliant(false)] public unsafe CharacterBufferRange( char* unsafeCharacterString, int characterLength ) : this( new CharacterBufferReference(unsafeCharacterString, characterLength), characterLength ) {} ////// Construct a character string from character buffer reference /// /// character buffer reference /// number of characters internal CharacterBufferRange( CharacterBufferReference characterBufferReference, int characterLength ) { if (characterLength < 0) { throw new ArgumentOutOfRangeException("characterLength", SR.Get(SRID.ParameterCannotBeNegative)); } int maxLength = (characterBufferReference.CharacterBuffer != null) ? characterBufferReference.CharacterBuffer.Count - characterBufferReference.OffsetToFirstChar : 0; if (characterLength > maxLength) { throw new ArgumentOutOfRangeException("characterLength", SR.Get(SRID.ParameterCannotBeGreaterThan, maxLength)); } _charBufferRef = characterBufferReference; _length = characterLength; } ////// Construct a character string from part of another character string /// internal CharacterBufferRange( CharacterBufferRange characterBufferRange, int offsetToFirstChar, int characterLength ) : this ( characterBufferRange.CharacterBuffer, characterBufferRange.OffsetToFirstChar + offsetToFirstChar, characterLength ) {} ////// Construct a character string object from string /// internal CharacterBufferRange( string charString ) : this( new StringCharacterBuffer(charString), 0, charString.Length ) {} ////// Construct character buffer from memory buffer /// internal CharacterBufferRange( CharacterBuffer charBuffer, int offsetToFirstChar, int characterLength ) : this( new CharacterBufferReference(charBuffer, offsetToFirstChar), characterLength ) {} ////// Construct a character string object by extracting text info from text run /// internal CharacterBufferRange(TextRun textRun) { _charBufferRef = textRun.CharacterBufferReference; _length = textRun.Length; } #endregion ////// Compute hash code /// public override int GetHashCode() { return _charBufferRef.GetHashCode() ^ _length; } ////// Test equality with the input object /// /// The object to test public override bool Equals(object obj) { if (obj is CharacterBufferRange) { return Equals((CharacterBufferRange)obj); } return false; } ////// Test equality with the input CharacterBufferRange /// /// The CharacterBufferRange value to test public bool Equals(CharacterBufferRange value) { return _charBufferRef.Equals(value._charBufferRef) && _length == value._length; } ////// Compare two CharacterBufferRange for equality /// /// left operand /// right operand ///whether or not two operands are equal public static bool operator == ( CharacterBufferRange left, CharacterBufferRange right ) { return left.Equals(right); } ////// Compare two CharacterBufferRange for inequality /// /// left operand /// right operand ///whether or not two operands are equal public static bool operator != ( CharacterBufferRange left, CharacterBufferRange right ) { return !(left == right); } ////// reference to the character buffer of a string /// public CharacterBufferReference CharacterBufferReference { get { return _charBufferRef; } } ////// number of characters in text source character store /// public int Length { get { return _length; } } ////// Getting an empty character string /// public static CharacterBufferRange Empty { get { return new CharacterBufferRange(); } } ////// Indicate whether the character string object contains no information /// internal bool IsEmpty { get { return _charBufferRef.CharacterBuffer == null || _length <= 0; } } ////// character memory buffer /// internal CharacterBuffer CharacterBuffer { get { return _charBufferRef.CharacterBuffer; } } ////// character offset relative to the beginning of buffer to /// the first character of the run. /// internal int OffsetToFirstChar { get { return _charBufferRef.OffsetToFirstChar; } } ////// Return a character from the range, index is relative to the beginning of the range /// internal char this[int index] { get { Invariant.Assert(index >= 0 && index < _length); return _charBufferRef.CharacterBuffer[_charBufferRef.OffsetToFirstChar + index]; } } } } // 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
- Persist.cs
- ClientFormsIdentity.cs
- SqlTypeConverter.cs
- DbProviderServices.cs
- DataGridViewRowsAddedEventArgs.cs
- PenCursorManager.cs
- FamilyTypefaceCollection.cs
- UserMapPath.cs
- TypeBuilder.cs
- DataGridViewRowsRemovedEventArgs.cs
- _AutoWebProxyScriptWrapper.cs
- SemanticKeyElement.cs
- PropertyDescriptorComparer.cs
- CompositeScriptReference.cs
- ActivityCodeDomSerializer.cs
- COM2ExtendedTypeConverter.cs
- TextReader.cs
- TableLayoutPanelDesigner.cs
- FixedPage.cs
- UInt64Converter.cs
- HttpHandlerActionCollection.cs
- XPathNavigatorReader.cs
- DataGridViewCellCollection.cs
- ImageCodecInfoPrivate.cs
- ListViewItem.cs
- QueryOperationResponseOfT.cs
- ChtmlCommandAdapter.cs
- DbMetaDataCollectionNames.cs
- EtwTrackingParticipant.cs
- FreezableCollection.cs
- OrderedHashRepartitionStream.cs
- DataSourceHelper.cs
- Point3DAnimationUsingKeyFrames.cs
- Serializer.cs
- PowerModeChangedEventArgs.cs
- TreeViewEvent.cs
- ItemCollection.cs
- RegexCharClass.cs
- TypeHelper.cs
- AppDomainShutdownMonitor.cs
- DataBindingExpressionBuilder.cs
- SqlNotificationRequest.cs
- ToolStripGripRenderEventArgs.cs
- SqlCaseSimplifier.cs
- storepermissionattribute.cs
- ManagedFilter.cs
- MenuTracker.cs
- Pen.cs
- HtmlControlPersistable.cs
- CloseCryptoHandleRequest.cs
- SqlError.cs
- ApplicationId.cs
- SqlConnectionString.cs
- InputMethod.cs
- IntSecurity.cs
- VScrollBar.cs
- ProfessionalColors.cs
- ExtensionWindow.cs
- SQLInt64Storage.cs
- _SslState.cs
- XamlStyleSerializer.cs
- IApplicationTrustManager.cs
- DataObjectEventArgs.cs
- X509CertificateStore.cs
- SqlMethods.cs
- ProfileService.cs
- DataGridViewColumnConverter.cs
- SignatureToken.cs
- PermissionToken.cs
- IdentifierService.cs
- PropertyInfo.cs
- SyndicationDeserializer.cs
- NativeMethods.cs
- DetailsViewPagerRow.cs
- WebPartManagerInternals.cs
- DbDataReader.cs
- EventLogPermissionEntry.cs
- SelectionWordBreaker.cs
- JsonServiceDocumentSerializer.cs
- WpfXamlMember.cs
- ConfigurationManagerHelperFactory.cs
- SafeBitVector32.cs
- XamlStyleSerializer.cs
- WorkflowServiceHost.cs
- TopClause.cs
- UserMapPath.cs
- Hex.cs
- IdentityModelDictionary.cs
- _NetRes.cs
- Cursor.cs
- ClaimTypes.cs
- Sql8ExpressionRewriter.cs
- WebPartMenu.cs
- ClientSettingsStore.cs
- MediaPlayerState.cs
- PropertyGridView.cs
- DateTimePicker.cs
- XMLSchema.cs
- SmtpSection.cs
- DBCommandBuilder.cs