Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Configuration / IssuedTokenParametersEndpointAddressElement.cs / 1 / IssuedTokenParametersEndpointAddressElement.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Configuration { using System; using System.ServiceModel; using System.Configuration; using System.ServiceModel.Channels; using System.Xml; public sealed partial class IssuedTokenParametersEndpointAddressElement : EndpointAddressElementBase, IConfigurationContextProviderInternal { public IssuedTokenParametersEndpointAddressElement() : base() { } [ConfigurationProperty(ConfigurationStrings.Binding, DefaultValue = "")] [StringValidator(MinLength = 0)] public string Binding { get {return (string) base[ConfigurationStrings.Binding]; } set { if (String.IsNullOrEmpty(value)) { value = String.Empty; } base[ConfigurationStrings.Binding] = value; } } [ConfigurationProperty(ConfigurationStrings.BindingConfiguration, DefaultValue = "")] [StringValidator(MinLength = 0)] public string BindingConfiguration { get {return (string) base[ConfigurationStrings.BindingConfiguration]; } set { if (String.IsNullOrEmpty(value)) { value = String.Empty; } base[ConfigurationStrings.BindingConfiguration] = value; } } internal void Copy(IssuedTokenParametersEndpointAddressElement source) { base.Copy(source); this.BindingConfiguration = source.BindingConfiguration; this.Binding = source.Binding; } internal void Validate() { ContextInformation context = ConfigurationHelpers.GetEvaluationContext(this); if (context != null && !String.IsNullOrEmpty(this.Binding)) { BindingsSection.ValidateBindingReference(this.Binding, this.BindingConfiguration, context, this); } } ContextInformation IConfigurationContextProviderInternal.GetEvaluationContext() { return this.EvaluationContext; } ////// RequiresReview - the return value will be used for a security decision -- see comment in interface definition /// ContextInformation IConfigurationContextProviderInternal.GetOriginalEvaluationContext() { DiagnosticUtility.DebugAssert("Not implemented: IConfigurationContextProviderInternal.GetOriginalEvaluationContext"); return null; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ListViewItemMouseHoverEvent.cs
- WebPartEditorCancelVerb.cs
- QueryAsyncResult.cs
- updateconfighost.cs
- PathFigure.cs
- ModelProperty.cs
- CompleteWizardStep.cs
- XmlObjectSerializer.cs
- RecordManager.cs
- ToolStripDropDownButton.cs
- NullToBooleanConverter.cs
- ProgressChangedEventArgs.cs
- UserControlFileEditor.cs
- TrustLevel.cs
- SpeechAudioFormatInfo.cs
- DesignerDataView.cs
- TcpWorkerProcess.cs
- PropertyGridEditorPart.cs
- QilBinary.cs
- TextRenderer.cs
- ListViewHitTestInfo.cs
- PropertyDescriptor.cs
- FileDialog_Vista_Interop.cs
- TypefaceCollection.cs
- StorageInfo.cs
- _NegoState.cs
- MemberAssignment.cs
- ToolBarOverflowPanel.cs
- ComponentSerializationService.cs
- MultiSelector.cs
- XmlChildNodes.cs
- BooleanToVisibilityConverter.cs
- WriteableBitmap.cs
- ControlCachePolicy.cs
- DbFunctionCommandTree.cs
- ValidatedControlConverter.cs
- UrlMappingCollection.cs
- HttpRawResponse.cs
- SamlAction.cs
- SqlNodeTypeOperators.cs
- ScrollPattern.cs
- StandardBindingReliableSessionElement.cs
- OletxTransactionHeader.cs
- DocumentPageViewAutomationPeer.cs
- SamlSecurityTokenAuthenticator.cs
- InputScopeNameConverter.cs
- ImageSource.cs
- FullTextState.cs
- RichTextBox.cs
- RuleSetCollection.cs
- SqlDataSourceCache.cs
- ComponentEditorForm.cs
- Keywords.cs
- ScriptResourceDefinition.cs
- ProviderConnectionPoint.cs
- FrameworkElement.cs
- BitmapScalingModeValidation.cs
- HuffModule.cs
- BufferedResponseStream.cs
- WebPartEditorOkVerb.cs
- newinstructionaction.cs
- EditableRegion.cs
- ExpressionConverter.cs
- RegionIterator.cs
- RegexStringValidatorAttribute.cs
- TableCellAutomationPeer.cs
- CodeDomExtensionMethods.cs
- PerformanceCounterManager.cs
- CompilerGeneratedAttribute.cs
- CommandSet.cs
- ErrorProvider.cs
- PanelDesigner.cs
- XmlTextReaderImpl.cs
- StorageFunctionMapping.cs
- AlternateViewCollection.cs
- WmlCommandAdapter.cs
- FlowPosition.cs
- XmlValueConverter.cs
- PackageDigitalSignatureManager.cs
- SchemaImporterExtensionsSection.cs
- AddInPipelineAttributes.cs
- TextTreeTextNode.cs
- EditorZoneBase.cs
- InputReport.cs
- Rfc2898DeriveBytes.cs
- BoundingRectTracker.cs
- BinaryWriter.cs
- DialogWindow.cs
- ValidationPropertyAttribute.cs
- ConfigurationPermission.cs
- DesignerForm.cs
- DefaultShape.cs
- PageDeviceFont.cs
- TextServicesCompartment.cs
- TreeNodeBindingCollection.cs
- RequestResizeEvent.cs
- Crc32.cs
- CheckBoxField.cs
- MenuCommandService.cs
- FileUtil.cs