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
- PassportAuthentication.cs
- UnionCqlBlock.cs
- StateRuntime.cs
- DisableDpiAwarenessAttribute.cs
- DoubleUtil.cs
- ActiveDocumentEvent.cs
- XmlCustomFormatter.cs
- XmlSequenceWriter.cs
- CapabilitiesRule.cs
- SqlDataSourceCache.cs
- DataGridViewImageCell.cs
- PageBuildProvider.cs
- DataServiceQueryProvider.cs
- OleDbParameterCollection.cs
- Opcode.cs
- SQLGuid.cs
- Inflater.cs
- RectValueSerializer.cs
- ListView.cs
- PackageRelationshipCollection.cs
- XmlDataCollection.cs
- EmbeddedMailObjectCollectionEditor.cs
- SineEase.cs
- DataGridViewControlCollection.cs
- BaseParser.cs
- WrappedIUnknown.cs
- Size3DValueSerializer.cs
- MsmqPoisonMessageException.cs
- TextRange.cs
- LogicalExpr.cs
- NativeMethods.cs
- CellTreeNodeVisitors.cs
- ObjectDataSource.cs
- WrapperSecurityCommunicationObject.cs
- MenuAdapter.cs
- DrawingContext.cs
- IBuiltInEvidence.cs
- ZipIOCentralDirectoryBlock.cs
- DocumentOrderComparer.cs
- ListBox.cs
- DropDownButton.cs
- SqlInternalConnection.cs
- DataGridViewAccessibleObject.cs
- BrushValueSerializer.cs
- GatewayDefinition.cs
- ParentQuery.cs
- ItemContainerGenerator.cs
- DescendantBaseQuery.cs
- DragDropHelper.cs
- BamlRecordReader.cs
- AvTraceDetails.cs
- BufferedWebEventProvider.cs
- BuildProvider.cs
- ObjectMemberMapping.cs
- AutomationPropertyInfo.cs
- UserNamePasswordClientCredential.cs
- Dispatcher.cs
- MultiSelectRootGridEntry.cs
- HttpProfileBase.cs
- Rotation3DAnimationBase.cs
- Dispatcher.cs
- UnsettableComboBox.cs
- SelectionEditor.cs
- StatusBar.cs
- VariableDesigner.xaml.cs
- ValueExpressions.cs
- PinnedBufferMemoryStream.cs
- FacetChecker.cs
- PermissionRequestEvidence.cs
- Style.cs
- CertificateReferenceElement.cs
- SimpleColumnProvider.cs
- RoutedEvent.cs
- EventItfInfo.cs
- MethodBuilder.cs
- DataTableReaderListener.cs
- DataGridItemEventArgs.cs
- Visual3DCollection.cs
- HttpConfigurationContext.cs
- Ref.cs
- PropertyOverridesDialog.cs
- ellipse.cs
- WindowsTokenRoleProvider.cs
- mansign.cs
- DiagnosticsConfigurationHandler.cs
- CompositeDataBoundControl.cs
- UnaryNode.cs
- FontWeight.cs
- EntityKey.cs
- XmlAttributeCollection.cs
- EnumDataContract.cs
- XmlEncoding.cs
- HttpWebRequestElement.cs
- RuntimeVariablesExpression.cs
- ReadOnlyMetadataCollection.cs
- TabPage.cs
- FontStretches.cs
- ContentOperations.cs
- WhitespaceRuleReader.cs
- FrameworkObject.cs