Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / Authorization.cs / 1 / Authorization.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net { ////// public class Authorization { private string m_Message; private bool m_Complete; private string[] m_ProtectionRealm; private string m_ConnectionGroupId; private bool m_MutualAuth; ///Used for handling and completing a custom authorization. ////// public Authorization(string token) { m_Message = ValidationHelper.MakeStringNull(token); m_Complete = true; } ////// Creates a new instance of the ///class with the specified /// authorization token. /// /// public Authorization(string token, bool finished) { m_Message = ValidationHelper.MakeStringNull(token); m_Complete = finished; } ////// Creates a new instance of the ///class with the specified /// authorization token and completion status. /// /// public Authorization(string token, bool finished, string connectionGroupId): this(token, finished, connectionGroupId, false) { } // internal Authorization(string token, bool finished, string connectionGroupId, bool mutualAuth) { m_Message = ValidationHelper.MakeStringNull(token); m_ConnectionGroupId = ValidationHelper.MakeStringNull(connectionGroupId); m_Complete = finished; m_MutualAuth = mutualAuth; } ////// Creates a new instance of the ///class with the specified /// authorization token, completion status, and connection m_ConnectionGroupId identifier. /// /// public string Message { get { return m_Message;} } // used to specify if this Authorization needs a special private server connection, // identified by this string ///Gets /// the response returned to the server in response to an authentication /// challenge. ////// public string ConnectionGroupId { get { return m_ConnectionGroupId; } } ///[To be supplied.] ////// public bool Complete { get { return m_Complete;} } internal void SetComplete(bool complete) { m_Complete = complete; } ///Gets the completion status of the authorization. ////// public string[] ProtectionRealm { get { return m_ProtectionRealm;} set { string[] newValue = ValidationHelper.MakeEmptyArrayNull(value); m_ProtectionRealm = newValue; } } // // public bool MutuallyAuthenticated { get { return Complete && m_MutualAuth; } set { m_MutualAuth = value; } } } // class Authorization } // namespace System.NetGets or sets the prefix for Uris that can be authenticated with the ///property.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SoapCodeExporter.cs
- FilterQuery.cs
- MetafileEditor.cs
- AvTrace.cs
- AccessDataSourceView.cs
- SemaphoreFullException.cs
- DoubleLinkListEnumerator.cs
- LinkUtilities.cs
- RepeatInfo.cs
- HScrollProperties.cs
- FormatterConverter.cs
- odbcmetadatafactory.cs
- HandlerFactoryCache.cs
- AttributeConverter.cs
- MeasureItemEvent.cs
- TransformedBitmap.cs
- Walker.cs
- MenuRendererClassic.cs
- InstanceHandle.cs
- IPEndPoint.cs
- UrlMappingsModule.cs
- DefaultTextStoreTextComposition.cs
- ReflectEventDescriptor.cs
- CmsInterop.cs
- ConfigurationPermission.cs
- LinkedList.cs
- BitmapEditor.cs
- Message.cs
- SystemWebCachingSectionGroup.cs
- TheQuery.cs
- SchemaType.cs
- PrimaryKeyTypeConverter.cs
- Gdiplus.cs
- SmtpReplyReader.cs
- ArgIterator.cs
- NativeRightsManagementAPIsStructures.cs
- BitmapEffectGroup.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- TcpChannelFactory.cs
- ArrayList.cs
- GridViewRowPresenterBase.cs
- Size.cs
- NonVisualControlAttribute.cs
- Model3D.cs
- SerializationInfoEnumerator.cs
- HtmlElement.cs
- Util.cs
- PrinterResolution.cs
- FrameworkElementFactory.cs
- GenericEnumConverter.cs
- EntityModelBuildProvider.cs
- HtmlEncodedRawTextWriter.cs
- CalendarAutomationPeer.cs
- CreateParams.cs
- ChannelDispatcherCollection.cs
- CalloutQueueItem.cs
- XamlSerializerUtil.cs
- ProxyWebPartManagerDesigner.cs
- EastAsianLunisolarCalendar.cs
- HtmlFormParameterWriter.cs
- RadioButton.cs
- AtomServiceDocumentSerializer.cs
- StreamGeometry.cs
- CloseSequence.cs
- ConfigXmlCDataSection.cs
- ForEachAction.cs
- PersonalizationStateInfoCollection.cs
- ListViewDataItem.cs
- StylusPointPropertyInfoDefaults.cs
- ClientConfigPaths.cs
- CustomUserNameSecurityTokenAuthenticator.cs
- AlignmentXValidation.cs
- MetadataSource.cs
- XmlnsDefinitionAttribute.cs
- ApplicationDirectoryMembershipCondition.cs
- Certificate.cs
- XmlSerializerFactory.cs
- NetworkAddressChange.cs
- PrimitiveCodeDomSerializer.cs
- Expressions.cs
- WindowsAuthenticationEventArgs.cs
- RegisteredScript.cs
- PartialClassGenerationTask.cs
- HatchBrush.cs
- XmlBinaryReader.cs
- Profiler.cs
- ZipIOModeEnforcingStream.cs
- PrintPreviewDialog.cs
- OperatorExpressions.cs
- DataGridToolTip.cs
- EmptyControlCollection.cs
- VerificationException.cs
- ListParagraph.cs
- EllipticalNodeOperations.cs
- HttpRuntime.cs
- HashLookup.cs
- Hashtable.cs
- ValidateNames.cs
- HMACSHA1.cs
- NullableConverter.cs