Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / ProtocolViolationException.cs / 1305376 / ProtocolViolationException.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net { using System.Diagnostics.CodeAnalysis; using System.Runtime.Serialization; using System.Security.Permissions; ////// [Serializable] public class ProtocolViolationException : InvalidOperationException, ISerializable { ////// An exception class used when an attempt is made to use an invalid /// protocol. /// ////// public ProtocolViolationException() : base() { } ////// Creates a new instance of the ///class. /// /// public ProtocolViolationException(string message) : base(message) { } protected ProtocolViolationException(SerializationInfo serializationInfo, StreamingContext streamingContext) : base(serializationInfo, streamingContext) { } ////// Creates a new instance of the ////// class with the specified message. /// [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase", Justification = "System.dll is still using pre-v4 security model and needs this demand")] [SecurityPermission(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter, SerializationFormatter=true)] void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) { base.GetObjectData(serializationInfo, streamingContext); } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase", Justification = "System.dll is still using pre-v4 security model and needs this demand")] [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)] public override void GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) { base.GetObjectData(serializationInfo, streamingContext); } }; // class ProtocolViolationException } // namespace System.Net // 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
- NetworkAddressChange.cs
- PageCodeDomTreeGenerator.cs
- HttpResponse.cs
- DeviceSpecificDesigner.cs
- XNodeNavigator.cs
- MobileControlsSection.cs
- SQLCharsStorage.cs
- HttpStreamFormatter.cs
- CanExecuteRoutedEventArgs.cs
- StorageMappingItemLoader.cs
- SafeBuffer.cs
- AnnotationDocumentPaginator.cs
- DataServiceHostFactory.cs
- HwndMouseInputProvider.cs
- EnumValidator.cs
- WinEventWrap.cs
- WebBrowserPermission.cs
- ConfigXmlAttribute.cs
- UrlMappingCollection.cs
- WebPageTraceListener.cs
- RawTextInputReport.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- ContractComponent.cs
- FrameworkTemplate.cs
- COM2ComponentEditor.cs
- FloaterBaseParaClient.cs
- Mapping.cs
- Base64Encoder.cs
- DataSourceUtil.cs
- VisualBrush.cs
- OleDbWrapper.cs
- InputReferenceExpression.cs
- HtmlGenericControl.cs
- TextInfo.cs
- SessionStateModule.cs
- TakeOrSkipWhileQueryOperator.cs
- DateTimeUtil.cs
- Int16KeyFrameCollection.cs
- HitTestResult.cs
- WorkflowDesigner.cs
- UpdateTracker.cs
- HtmlControl.cs
- DataControlPagerLinkButton.cs
- HostProtectionException.cs
- HtmlContainerControl.cs
- shaperfactory.cs
- WmpBitmapEncoder.cs
- OleDbReferenceCollection.cs
- XhtmlConformanceSection.cs
- AnnotationResourceCollection.cs
- NavigationEventArgs.cs
- AdRotatorDesigner.cs
- HwndSource.cs
- RelationshipManager.cs
- ObjectNavigationPropertyMapping.cs
- XmlResolver.cs
- HtmlControlPersistable.cs
- CancellableEnumerable.cs
- EFAssociationProvider.cs
- ToolStripDropDown.cs
- LookupNode.cs
- Point3DAnimationUsingKeyFrames.cs
- TypeUtils.cs
- BoundColumn.cs
- _SpnDictionary.cs
- UnsafeNativeMethods.cs
- Coordinator.cs
- TransformerInfoCollection.cs
- Debug.cs
- XmlTextAttribute.cs
- Calendar.cs
- ExpressionBindingCollection.cs
- WebPartCatalogAddVerb.cs
- SocketElement.cs
- DispatcherEventArgs.cs
- CompilationPass2TaskInternal.cs
- InputProcessorProfilesLoader.cs
- ListViewItem.cs
- Comparer.cs
- PkcsMisc.cs
- DocumentEventArgs.cs
- AlphaSortedEnumConverter.cs
- MultiView.cs
- XmlDataSource.cs
- Root.cs
- InputLanguageEventArgs.cs
- WhitespaceRule.cs
- MetafileHeaderWmf.cs
- BitmapSizeOptions.cs
- DodSequenceMerge.cs
- ServerValidateEventArgs.cs
- MouseCaptureWithinProperty.cs
- HTTPAPI_VERSION.cs
- SemanticAnalyzer.cs
- MasterPageCodeDomTreeGenerator.cs
- CatalogPart.cs
- DecimalFormatter.cs
- BitArray.cs
- OrderByQueryOptionExpression.cs
- FormsAuthenticationConfiguration.cs