Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Security / Cryptography / AsymmetricAlgorithm.cs / 1305376 / AsymmetricAlgorithm.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //[....] // // // AsymmetricAlgorithm.cs // namespace System.Security.Cryptography { [System.Runtime.InteropServices.ComVisible(true)] public abstract class AsymmetricAlgorithm : IDisposable { protected int KeySizeValue; protected KeySizes[] LegalKeySizesValue; // // public constructors // protected AsymmetricAlgorithm() {} // AsymmetricAlgorithm implements IDisposable public void Dispose() { Clear(); } public void Clear() { Dispose(true); GC.SuppressFinalize(this); } protected virtual void Dispose(bool disposing) { return; } // // public properties // public virtual int KeySize { get { return KeySizeValue; } set { int i; int j; for (i=0; i[....] // // // AsymmetricAlgorithm.cs // namespace System.Security.Cryptography { [System.Runtime.InteropServices.ComVisible(true)] public abstract class AsymmetricAlgorithm : IDisposable { protected int KeySizeValue; protected KeySizes[] LegalKeySizesValue; // // public constructors // protected AsymmetricAlgorithm() {} // AsymmetricAlgorithm implements IDisposable public void Dispose() { Clear(); } public void Clear() { Dispose(true); GC.SuppressFinalize(this); } protected virtual void Dispose(bool disposing) { return; } // // public properties // public virtual int KeySize { get { return KeySizeValue; } set { int i; int j; for (i=0; i
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UpDownBase.cs
- XsltFunctions.cs
- ResourceManager.cs
- HostSecurityManager.cs
- ExpressionNode.cs
- CodeGroup.cs
- ContractHandle.cs
- ParseHttpDate.cs
- XmlDocumentSerializer.cs
- WebPartVerbCollection.cs
- StylusPointPropertyUnit.cs
- XsltException.cs
- MenuStrip.cs
- RoutedEventValueSerializer.cs
- IdentityReference.cs
- XsdBuilder.cs
- LoginName.cs
- DataStreams.cs
- CDSCollectionETWBCLProvider.cs
- XamlTemplateSerializer.cs
- EntityContainerAssociationSet.cs
- SynchronizedMessageSource.cs
- WebPartConnectionsConfigureVerb.cs
- SerializationSectionGroup.cs
- TabRenderer.cs
- KeyNotFoundException.cs
- SQLGuid.cs
- TextTreeNode.cs
- LessThanOrEqual.cs
- CheckoutException.cs
- HttpPostedFileBase.cs
- DynamicResourceExtensionConverter.cs
- RewritingValidator.cs
- SqlWriter.cs
- ActionFrame.cs
- OAVariantLib.cs
- WindowsGraphicsCacheManager.cs
- ClientSection.cs
- DataList.cs
- TimelineGroup.cs
- TemplateContainer.cs
- ResumeStoryboard.cs
- EncryptedKeyIdentifierClause.cs
- DataException.cs
- DeclaredTypeElementCollection.cs
- PasswordBoxAutomationPeer.cs
- OracleRowUpdatedEventArgs.cs
- SafeRightsManagementEnvironmentHandle.cs
- SelectionRange.cs
- MouseEvent.cs
- ContentHostHelper.cs
- XmlWrappingReader.cs
- HashLookup.cs
- MachineSettingsSection.cs
- FixedSOMContainer.cs
- SqlFileStream.cs
- TemplateBamlRecordReader.cs
- SqlCachedBuffer.cs
- Stylesheet.cs
- Mapping.cs
- ContentElementAutomationPeer.cs
- HttpSessionStateBase.cs
- ObjectHelper.cs
- CollectionExtensions.cs
- TransactionChannelFaultConverter.cs
- WebBrowserDocumentCompletedEventHandler.cs
- Group.cs
- SystemSounds.cs
- SafeLibraryHandle.cs
- XmlValidatingReader.cs
- Rect3DValueSerializer.cs
- SchemaNames.cs
- NamespaceDecl.cs
- TypeListConverter.cs
- BitmapEffectGroup.cs
- PopupEventArgs.cs
- ConnectionPoolRegistry.cs
- XmlDataFileEditor.cs
- DataGridViewRowCollection.cs
- ClientScriptManager.cs
- FlowLayoutSettings.cs
- IndentTextWriter.cs
- NativeMethods.cs
- SmiTypedGetterSetter.cs
- ScriptingWebServicesSectionGroup.cs
- KeyFrames.cs
- AuthenticationException.cs
- DriveNotFoundException.cs
- HttpHandlersSection.cs
- InvalidBodyAccessException.cs
- SchemaInfo.cs
- ImmutableCollection.cs
- Facet.cs
- ViewStateException.cs
- UserCancellationException.cs
- RuntimeConfig.cs
- DirectoryNotFoundException.cs
- ChtmlTextWriter.cs
- ManifestResourceInfo.cs
- Activation.cs