Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / HtmlHistory.cs / 1305376 / HtmlHistory.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.IO; using System.Drawing; using System.Drawing.Printing; using System.Windows.Forms; using System.Security.Permissions; using System.Security; using System.Runtime.InteropServices; using System.Net; using System.Globalization; namespace System.Windows.Forms { ////// /// [PermissionSetAttribute(SecurityAction.LinkDemand, Name = "FullTrust")] public sealed class HtmlHistory : IDisposable { private UnsafeNativeMethods.IOmHistory htmlHistory; private bool disposed; [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] internal HtmlHistory(UnsafeNativeMethods.IOmHistory history) { this.htmlHistory = history; Debug.Assert(this.NativeOmHistory != null, "The history object should implement IOmHistory"); } private UnsafeNativeMethods.IOmHistory NativeOmHistory { get { if (this.disposed) { throw new System.ObjectDisposedException(GetType().Name); } return this.htmlHistory; } } ///[To be supplied.] ///public void Dispose() { this.htmlHistory = null; this.disposed = true; GC.SuppressFinalize(this); } /// /// /// public int Length { get { return (int)this.NativeOmHistory.GetLength(); } } ///[To be supplied.] ////// /// public void Back(int numberBack) { if (numberBack < 0) { throw new ArgumentOutOfRangeException("numberBack", SR.GetString(SR.InvalidLowBoundArgumentEx, "numberBack", numberBack.ToString(CultureInfo.CurrentCulture), (0).ToString(CultureInfo.CurrentCulture))); } else if (numberBack > 0) { object oNumForward = (object)(-numberBack); this.NativeOmHistory.Go(ref oNumForward); } } ///[To be supplied.] ////// /// public void Forward(int numberForward) { if (numberForward < 0) { throw new ArgumentOutOfRangeException("numberForward", SR.GetString(SR.InvalidLowBoundArgumentEx, "numberForward", numberForward.ToString(CultureInfo.CurrentCulture), (0).ToString(CultureInfo.CurrentCulture))); } else if (numberForward > 0) { object oNumForward = (object)numberForward; this.NativeOmHistory.Go(ref oNumForward); } } ///[To be supplied.] ////// /// [SuppressMessage("Microsoft.Usage", "CA2234:PassSystemUriObjectsInsteadOfStrings")] public void Go(Uri url) { Go(url.ToString()); } ///Go to a specific Uri in the history ////// /// /// Note: We intentionally have a string overload (apparently Mort wants one). We don't have /// string overloads call Uri overloads because that breaks Uris that aren't fully qualified /// (things like "www.microsoft.com") that the underlying objects support and we don't want to /// break. [SuppressMessage("Microsoft.Design", "CA1057:StringUriOverloadsCallSystemUriOverloads")] public void Go(string urlString) { object loc = (object)urlString; this.NativeOmHistory.Go(ref loc); } ///Go to a specific url(string) in the history ////// /// public void Go(int relativePosition) { object loc = (object)relativePosition; this.NativeOmHistory.Go(ref loc); } ///Go to the specified position in the history list ////// /// public object DomHistory { get { return this.NativeOmHistory; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.IO; using System.Drawing; using System.Drawing.Printing; using System.Windows.Forms; using System.Security.Permissions; using System.Security; using System.Runtime.InteropServices; using System.Net; using System.Globalization; namespace System.Windows.Forms { ////// /// [PermissionSetAttribute(SecurityAction.LinkDemand, Name = "FullTrust")] public sealed class HtmlHistory : IDisposable { private UnsafeNativeMethods.IOmHistory htmlHistory; private bool disposed; [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] internal HtmlHistory(UnsafeNativeMethods.IOmHistory history) { this.htmlHistory = history; Debug.Assert(this.NativeOmHistory != null, "The history object should implement IOmHistory"); } private UnsafeNativeMethods.IOmHistory NativeOmHistory { get { if (this.disposed) { throw new System.ObjectDisposedException(GetType().Name); } return this.htmlHistory; } } ///[To be supplied.] ///public void Dispose() { this.htmlHistory = null; this.disposed = true; GC.SuppressFinalize(this); } /// /// /// public int Length { get { return (int)this.NativeOmHistory.GetLength(); } } ///[To be supplied.] ////// /// public void Back(int numberBack) { if (numberBack < 0) { throw new ArgumentOutOfRangeException("numberBack", SR.GetString(SR.InvalidLowBoundArgumentEx, "numberBack", numberBack.ToString(CultureInfo.CurrentCulture), (0).ToString(CultureInfo.CurrentCulture))); } else if (numberBack > 0) { object oNumForward = (object)(-numberBack); this.NativeOmHistory.Go(ref oNumForward); } } ///[To be supplied.] ////// /// public void Forward(int numberForward) { if (numberForward < 0) { throw new ArgumentOutOfRangeException("numberForward", SR.GetString(SR.InvalidLowBoundArgumentEx, "numberForward", numberForward.ToString(CultureInfo.CurrentCulture), (0).ToString(CultureInfo.CurrentCulture))); } else if (numberForward > 0) { object oNumForward = (object)numberForward; this.NativeOmHistory.Go(ref oNumForward); } } ///[To be supplied.] ////// /// [SuppressMessage("Microsoft.Usage", "CA2234:PassSystemUriObjectsInsteadOfStrings")] public void Go(Uri url) { Go(url.ToString()); } ///Go to a specific Uri in the history ////// /// /// Note: We intentionally have a string overload (apparently Mort wants one). We don't have /// string overloads call Uri overloads because that breaks Uris that aren't fully qualified /// (things like "www.microsoft.com") that the underlying objects support and we don't want to /// break. [SuppressMessage("Microsoft.Design", "CA1057:StringUriOverloadsCallSystemUriOverloads")] public void Go(string urlString) { object loc = (object)urlString; this.NativeOmHistory.Go(ref loc); } ///Go to a specific url(string) in the history ////// /// public void Go(int relativePosition) { object loc = (object)relativePosition; this.NativeOmHistory.Go(ref loc); } ///Go to the specified position in the history list ////// /// public object DomHistory { get { return this.NativeOmHistory; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FrameworkContextData.cs
- assertwrapper.cs
- ExpressionEditor.cs
- MediaEntryAttribute.cs
- ScrollData.cs
- ServiceHttpHandlerFactory.cs
- NavigationService.cs
- OlePropertyStructs.cs
- ECDiffieHellmanPublicKey.cs
- ImageIndexConverter.cs
- ISFTagAndGuidCache.cs
- RSAPKCS1KeyExchangeFormatter.cs
- Int32.cs
- SoapCodeExporter.cs
- QuaternionAnimationUsingKeyFrames.cs
- safemediahandle.cs
- PixelFormatConverter.cs
- EntityProviderServices.cs
- TextOutput.cs
- ProxyGenerator.cs
- RelationshipFixer.cs
- ThreadStartException.cs
- ThreadLocal.cs
- ComPlusDiagnosticTraceRecords.cs
- EntityTypeEmitter.cs
- TableRowCollection.cs
- PreviewPrintController.cs
- UntrustedRecipientException.cs
- ItemsPanelTemplate.cs
- Size3DConverter.cs
- MSHTMLHost.cs
- SchemaExporter.cs
- WebBrowser.cs
- XmlUnspecifiedAttribute.cs
- FeatureAttribute.cs
- FontUnitConverter.cs
- CompoundFileStorageReference.cs
- _UncName.cs
- CodeSnippetTypeMember.cs
- MaterialGroup.cs
- TypeLibConverter.cs
- MonthChangedEventArgs.cs
- ControlIdConverter.cs
- Font.cs
- CharacterMetricsDictionary.cs
- ArrowControl.xaml.cs
- DynamicValueConverter.cs
- EventProperty.cs
- ChannelDispatcher.cs
- ReachDocumentSequenceSerializerAsync.cs
- XamlDesignerSerializationManager.cs
- SmiRequestExecutor.cs
- FlowLayoutPanelDesigner.cs
- GifBitmapDecoder.cs
- IList.cs
- MetadataArtifactLoaderResource.cs
- AnonymousIdentificationModule.cs
- ColorMatrix.cs
- SmtpMail.cs
- NonBatchDirectoryCompiler.cs
- CompiledRegexRunner.cs
- FixedTextBuilder.cs
- PopupEventArgs.cs
- COM2Properties.cs
- CornerRadiusConverter.cs
- WebPartRestoreVerb.cs
- PropertyToken.cs
- FontFamilyValueSerializer.cs
- EncoderExceptionFallback.cs
- RealizationDrawingContextWalker.cs
- WebHostedComPlusServiceHost.cs
- ErrorEventArgs.cs
- DesignerImageAdapter.cs
- AddInServer.cs
- ping.cs
- ConfigXmlElement.cs
- StartFileNameEditor.cs
- Enlistment.cs
- TransformedBitmap.cs
- HttpGetProtocolImporter.cs
- Bold.cs
- CookieProtection.cs
- SubstitutionList.cs
- IERequestCache.cs
- SchemaImporterExtensionElement.cs
- CookieParameter.cs
- SmtpTransport.cs
- FileUpload.cs
- XamlReader.cs
- base64Transforms.cs
- TranslateTransform.cs
- Menu.cs
- RegexRunner.cs
- XsdBuildProvider.cs
- HMACMD5.cs
- BitmapEffectrendercontext.cs
- RoutedEventArgs.cs
- DependsOnAttribute.cs
- PageCatalogPart.cs
- ProxyFragment.cs