Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Security / Principal / IdentityNotMappedException.cs / 1 / IdentityNotMappedException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== using System; using Microsoft.Win32; using System.Runtime.Serialization; using System.Text; using System.Globalization; using System.Security.Permissions; namespace System.Security.Principal { [Serializable] [System.Runtime.InteropServices.ComVisible(false)] public sealed class IdentityNotMappedException : SystemException { private IdentityReferenceCollection unmappedIdentities; public IdentityNotMappedException() : base( Environment.GetResourceString( "IdentityReference_IdentityNotMapped" )) { } public IdentityNotMappedException( string message ) : base( message ) { } public IdentityNotMappedException( String message, Exception inner ) : base( message, inner ) { } internal IdentityNotMappedException(string message, IdentityReferenceCollection unmappedIdentities) : this( message ) { this.unmappedIdentities = unmappedIdentities; } internal IdentityNotMappedException( SerializationInfo info, StreamingContext context ) : base ( info, context ) {} [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)] public override void GetObjectData( SerializationInfo serializationInfo, StreamingContext streamingContext ) { base.GetObjectData(serializationInfo, streamingContext); } public IdentityReferenceCollection UnmappedIdentities { get { if (unmappedIdentities == null) { unmappedIdentities = new IdentityReferenceCollection(); } return unmappedIdentities; } } } }
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ByteAnimation.cs
- HtmlInputControl.cs
- CodeTypeReference.cs
- DoubleCollection.cs
- CodeVariableReferenceExpression.cs
- MSHTMLHost.cs
- RegexWriter.cs
- FixedLineResult.cs
- FaultDesigner.cs
- HtmlWindow.cs
- Attributes.cs
- FormsAuthentication.cs
- HeaderCollection.cs
- InvalidPropValue.cs
- DataSourceGroupCollection.cs
- xmlfixedPageInfo.cs
- BitmapEditor.cs
- GenericAuthenticationEventArgs.cs
- HttpSessionStateBase.cs
- Version.cs
- Number.cs
- __Filters.cs
- ListViewGroupItemCollection.cs
- MarshalDirectiveException.cs
- PaginationProgressEventArgs.cs
- CheckBoxDesigner.cs
- InputQueue.cs
- SplashScreenNativeMethods.cs
- MatrixStack.cs
- SkipQueryOptionExpression.cs
- prompt.cs
- WindowsStreamSecurityElement.cs
- itemelement.cs
- Binding.cs
- StdValidatorsAndConverters.cs
- IApplicationTrustManager.cs
- BuildProviderCollection.cs
- EntitySetBase.cs
- Messages.cs
- EntitySqlQueryState.cs
- DefaultProxySection.cs
- CompositeCollectionView.cs
- DelayLoadType.cs
- LiteralTextContainerControlBuilder.cs
- BasicDesignerLoader.cs
- MobileCapabilities.cs
- UriExt.cs
- SqlRewriteScalarSubqueries.cs
- SemaphoreFullException.cs
- PreApplicationStartMethodAttribute.cs
- CLSCompliantAttribute.cs
- XmlRootAttribute.cs
- PropertyPath.cs
- ToolStripSeparator.cs
- MdiWindowListItemConverter.cs
- TransformPatternIdentifiers.cs
- StringFreezingAttribute.cs
- HebrewNumber.cs
- Wildcard.cs
- VectorAnimation.cs
- SafeLibraryHandle.cs
- XmlRawWriterWrapper.cs
- DynamicFilter.cs
- CodeTypeMember.cs
- DataGridViewCellLinkedList.cs
- PropertyPath.cs
- SevenBitStream.cs
- DesignBindingConverter.cs
- SystemFonts.cs
- GeometryCombineModeValidation.cs
- MimeWriter.cs
- RegistryKey.cs
- WsiProfilesElement.cs
- FollowerQueueCreator.cs
- BitmapEffectCollection.cs
- ListViewPagedDataSource.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- StreamingContext.cs
- MenuBindingsEditor.cs
- RIPEMD160.cs
- SqlProfileProvider.cs
- WindowsAuthenticationEventArgs.cs
- SQLGuidStorage.cs
- AppDomainManager.cs
- SchemaSetCompiler.cs
- UInt32Storage.cs
- WebPartConnectVerb.cs
- sqlser.cs
- UnauthorizedAccessException.cs
- Dynamic.cs
- InteropBitmapSource.cs
- ProfileService.cs
- SqlClientMetaDataCollectionNames.cs
- XamlVector3DCollectionSerializer.cs
- EncryptedType.cs
- xmlsaver.cs
- DataRelation.cs
- unsafenativemethodstextservices.cs
- SimpleModelProvider.cs
- SortableBindingList.cs