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
- ConfigurationCollectionAttribute.cs
- SelectionProcessor.cs
- DataGridView.cs
- ReflectionServiceProvider.cs
- RelationshipEndCollection.cs
- WebPart.cs
- PointAnimation.cs
- AdornedElementPlaceholder.cs
- Int32.cs
- InplaceBitmapMetadataWriter.cs
- HelpEvent.cs
- AttributeCollection.cs
- ReadOnlyDictionary.cs
- FileDialog_Vista.cs
- SqlWebEventProvider.cs
- FrameworkContentElement.cs
- Scalars.cs
- SystemIPInterfaceStatistics.cs
- TextTreeText.cs
- HierarchicalDataSourceIDConverter.cs
- TabletDevice.cs
- HandleDictionary.cs
- LookupNode.cs
- DatePickerAutomationPeer.cs
- ParameterCollection.cs
- KeySplineConverter.cs
- DesignerOptionService.cs
- Component.cs
- cookie.cs
- CurrentTimeZone.cs
- DecimalConstantAttribute.cs
- FileCodeGroup.cs
- Operator.cs
- SourceFileInfo.cs
- RequestCachePolicyConverter.cs
- PriorityRange.cs
- PlanCompiler.cs
- DirectoryInfo.cs
- XmlSchemaGroupRef.cs
- WebPartVerb.cs
- PersonalizableAttribute.cs
- CodeTypeDeclarationCollection.cs
- XmlIterators.cs
- HttpsTransportBindingElement.cs
- X509Certificate2.cs
- SymmetricAlgorithm.cs
- ThicknessConverter.cs
- TreeNodeBindingCollection.cs
- ContextStack.cs
- BitFlagsGenerator.cs
- Events.cs
- DataKeyArray.cs
- EdmSchemaAttribute.cs
- COM2IProvidePropertyBuilderHandler.cs
- FixedTextSelectionProcessor.cs
- PrintPageEvent.cs
- XmlSchemaObjectCollection.cs
- WebBrowserContainer.cs
- AssociationTypeEmitter.cs
- Helper.cs
- RawStylusActions.cs
- WindowsSpinner.cs
- WorkflowRequestContext.cs
- ConsumerConnectionPoint.cs
- Pointer.cs
- WebEvents.cs
- MailAddress.cs
- Shape.cs
- WaitHandle.cs
- StrokeNodeEnumerator.cs
- InstanceNameConverter.cs
- PerspectiveCamera.cs
- PointCollection.cs
- EnumerableCollectionView.cs
- PositiveTimeSpanValidator.cs
- ServiceObjectContainer.cs
- MultipleFilterMatchesException.cs
- RSAOAEPKeyExchangeDeformatter.cs
- CodeTypeReference.cs
- DocumentCollection.cs
- XPathParser.cs
- StringFreezingAttribute.cs
- DiscoveryDocumentLinksPattern.cs
- ListItemCollection.cs
- HostingPreferredMapPath.cs
- BindingListCollectionView.cs
- ExternalException.cs
- AvtEvent.cs
- ListManagerBindingsCollection.cs
- TableFieldsEditor.cs
- TransportListener.cs
- ExpressionNormalizer.cs
- PathFigure.cs
- HttpRuntimeSection.cs
- VectorCollectionValueSerializer.cs
- Focus.cs
- ActivityExecutorOperation.cs
- WebPartConnectVerb.cs
- SmiEventSink_Default.cs
- InvalidateEvent.cs