Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / ApplicationServices / CreatingCookieEventArgs.cs / 1305376 / CreatingCookieEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.ApplicationServices { using System; public class CreatingCookieEventArgs : EventArgs { private string _userName; public string UserName { get { return _userName; } } private string _password; public string Password { get { return _password; } } private string _customCredential ; public string CustomCredential { get { return _customCredential;} } private bool _isPersistent ; public bool IsPersistent { get { return _isPersistent;} } private bool _cookieIsSet; public bool CookieIsSet { set { _cookieIsSet = value; } get { return _cookieIsSet; } } internal CreatingCookieEventArgs(string username, string password, bool isPersistent, string customCredential ) { _cookieIsSet = false; _userName = username; _password = password; _password = password; _isPersistent = isPersistent; _customCredential = customCredential; } //hiding default constructor private CreatingCookieEventArgs() { } } } // 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
- XmlAttributeAttribute.cs
- ConnectionString.cs
- SerializationInfoEnumerator.cs
- XmlBinaryReader.cs
- FormsAuthenticationCredentials.cs
- Grid.cs
- TextChangedEventArgs.cs
- AsyncOperationManager.cs
- FilteredAttributeCollection.cs
- XmlWriterSettings.cs
- WebServiceHost.cs
- DocumentViewerBase.cs
- RoleManagerModule.cs
- TimeSpan.cs
- XmlUrlResolver.cs
- ConnectionConsumerAttribute.cs
- Camera.cs
- ValidationRule.cs
- BigInt.cs
- EntityCollection.cs
- Subtree.cs
- AppSettingsSection.cs
- DecoderFallback.cs
- ExeContext.cs
- XamlParser.cs
- ToggleProviderWrapper.cs
- TextBoxRenderer.cs
- ClientOperation.cs
- PrimitiveSchema.cs
- odbcmetadatacolumnnames.cs
- BitmapEffectInput.cs
- ParameterCollectionEditor.cs
- WebPartManagerInternals.cs
- AccessorTable.cs
- ComEventsSink.cs
- StrongNameMembershipCondition.cs
- StringComparer.cs
- Exceptions.cs
- MeasurementDCInfo.cs
- SessionStateUtil.cs
- Thumb.cs
- Token.cs
- DetailsViewModeEventArgs.cs
- Size3DValueSerializer.cs
- PropertyNames.cs
- XamlParser.cs
- WebPartConnectionCollection.cs
- DataGridLengthConverter.cs
- SurrogateChar.cs
- DataSourceDesigner.cs
- ConfigUtil.cs
- StyleSheetDesigner.cs
- MD5Cng.cs
- FormViewCommandEventArgs.cs
- EditableLabelControl.cs
- DeadCharTextComposition.cs
- VSWCFServiceContractGenerator.cs
- SolidColorBrush.cs
- DispatchWrapper.cs
- ListViewItem.cs
- DropDownList.cs
- HuffCodec.cs
- Group.cs
- RepeatButton.cs
- HwndHost.cs
- SelectionManager.cs
- BaseTemplateBuildProvider.cs
- NumericUpDownAccelerationCollection.cs
- HttpException.cs
- ExceptionHelpers.cs
- CurrentChangingEventManager.cs
- GraphicsPath.cs
- CodeSnippetExpression.cs
- XmlAttributeCache.cs
- SqlConnection.cs
- FileDialogCustomPlace.cs
- DataGridCommandEventArgs.cs
- InkPresenterAutomationPeer.cs
- XmlILModule.cs
- FunctionDetailsReader.cs
- WindowsButton.cs
- SimpleMailWebEventProvider.cs
- CheckBoxRenderer.cs
- WpfPayload.cs
- WrappingXamlSchemaContext.cs
- TextContainer.cs
- SimplePropertyEntry.cs
- ScrollItemPattern.cs
- XmlSchemaAnnotation.cs
- ProxyWebPartManager.cs
- RotationValidation.cs
- WasNotInstalledException.cs
- RawUIStateInputReport.cs
- NativeDirectoryServicesQueryAPIs.cs
- VectorValueSerializer.cs
- MessageLoggingFilterTraceRecord.cs
- updateconfighost.cs
- BamlRecordWriter.cs
- SmtpFailedRecipientException.cs
- TableParagraph.cs