Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Security / Tokens / SupportingTokenParameters.cs / 1 / SupportingTokenParameters.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Security.Tokens { using System.ServiceModel.Security; using System.Collections.ObjectModel; using System.Text; using System.Globalization; public class SupportingTokenParameters { Collectionsigned = new Collection (); Collection signedEncrypted = new Collection (); Collection endorsing = new Collection (); Collection signedEndorsing = new Collection (); SupportingTokenParameters(SupportingTokenParameters other) { if (other == null) throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("other"); foreach (SecurityTokenParameters p in other.signed) this.signed.Add((SecurityTokenParameters)p.Clone()); foreach (SecurityTokenParameters p in other.signedEncrypted) this.signedEncrypted.Add((SecurityTokenParameters)p.Clone()); foreach (SecurityTokenParameters p in other.endorsing) this.endorsing.Add((SecurityTokenParameters)p.Clone()); foreach (SecurityTokenParameters p in other.signedEndorsing) this.signedEndorsing.Add((SecurityTokenParameters)p.Clone()); } public SupportingTokenParameters() { // empty } public Collection Endorsing { get { return this.endorsing; } } public Collection SignedEndorsing { get { return this.signedEndorsing; } } public Collection Signed { get { return this.signed; } } public Collection SignedEncrypted { get { return this.signedEncrypted; } } public void SetKeyDerivation(bool requireDerivedKeys) { foreach (SecurityTokenParameters t in this.endorsing) t.RequireDerivedKeys = requireDerivedKeys; foreach (SecurityTokenParameters t in this.signedEndorsing) t.RequireDerivedKeys = requireDerivedKeys; } internal bool IsSetKeyDerivation(bool requireDerivedKeys) { foreach (SecurityTokenParameters t in this.endorsing) if (t.RequireDerivedKeys != requireDerivedKeys) return false; foreach (SecurityTokenParameters t in this.signedEndorsing) if (t.RequireDerivedKeys != requireDerivedKeys) return false; return true; } public override string ToString() { StringBuilder sb = new StringBuilder(); int k; if (this.endorsing.Count == 0) sb.AppendLine("No endorsing tokens."); else for (k = 0; k < this.endorsing.Count; k++) { sb.AppendLine(String.Format(CultureInfo.InvariantCulture, "Endorsing[{0}]", k.ToString(CultureInfo.InvariantCulture))); sb.AppendLine(" " + this.endorsing[k].ToString().Trim().Replace("\n", "\n ")); } if (this.signed.Count == 0) sb.AppendLine("No signed tokens."); else for (k = 0; k < this.signed.Count; k++) { sb.AppendLine(String.Format(CultureInfo.InvariantCulture, "Signed[{0}]", k.ToString(CultureInfo.InvariantCulture))); sb.AppendLine(" " + this.signed[k].ToString().Trim().Replace("\n", "\n ")); } if (this.signedEncrypted.Count == 0) sb.AppendLine("No signed encrypted tokens."); else for (k = 0; k < this.signedEncrypted.Count; k++) { sb.AppendLine(String.Format(CultureInfo.InvariantCulture, "SignedEncrypted[{0}]", k.ToString(CultureInfo.InvariantCulture))); sb.AppendLine(" " + this.signedEncrypted[k].ToString().Trim().Replace("\n", "\n ")); } if (this.signedEndorsing.Count == 0) sb.AppendLine("No signed endorsing tokens."); else for (k = 0; k < this.signedEndorsing.Count; k++) { sb.AppendLine(String.Format(CultureInfo.InvariantCulture, "SignedEndorsing[{0}]", k.ToString(CultureInfo.InvariantCulture))); sb.AppendLine(" " + this.signedEndorsing[k].ToString().Trim().Replace("\n", "\n ")); } return sb.ToString().Trim(); } public SupportingTokenParameters Clone() { return new SupportingTokenParameters(this); } internal bool IsEmpty() { return signed.Count == 0 && signedEncrypted.Count == 0 && endorsing.Count == 0 && signedEndorsing.Count == 0; } } } // 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
- TagMapCollection.cs
- SHA1.cs
- DataContractSet.cs
- _ListenerRequestStream.cs
- IISMapPath.cs
- SessionPageStatePersister.cs
- ParenthesizePropertyNameAttribute.cs
- SchemaType.cs
- CodeGenHelper.cs
- ThousandthOfEmRealDoubles.cs
- VisualStyleInformation.cs
- BinHexDecoder.cs
- Types.cs
- RequestCachePolicyConverter.cs
- MultiTrigger.cs
- TrustManager.cs
- TileBrush.cs
- SerializerProvider.cs
- adornercollection.cs
- WebHttpSecurity.cs
- WebBrowserEvent.cs
- SafePointer.cs
- XPathCompiler.cs
- SettingsProviderCollection.cs
- HtmlSelect.cs
- MILUtilities.cs
- ValidationPropertyAttribute.cs
- MimeMapping.cs
- SendActivityEventArgs.cs
- SafeRegistryHandle.cs
- CodeAttributeArgument.cs
- cookiecollection.cs
- ProcessModelInfo.cs
- ObjectHandle.cs
- WebResourceAttribute.cs
- RuleProcessor.cs
- embossbitmapeffect.cs
- XPathSelectionIterator.cs
- GeneralTransform3DCollection.cs
- ExtensibleClassFactory.cs
- DataGridViewRowHeaderCell.cs
- ThicknessAnimation.cs
- SimpleWorkerRequest.cs
- TextDpi.cs
- Cursors.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- StatusBarPanel.cs
- PhysicalAddress.cs
- SafeSecurityHelper.cs
- OneOfConst.cs
- PerformanceCounter.cs
- DiffuseMaterial.cs
- TryExpression.cs
- TrustManagerMoreInformation.cs
- TextServicesCompartmentEventSink.cs
- ProxyElement.cs
- GlobalizationSection.cs
- SelectionWordBreaker.cs
- NamespaceCollection.cs
- InvalidTimeZoneException.cs
- BindToObject.cs
- WriteableOnDemandPackagePart.cs
- _UriTypeConverter.cs
- ToolStripControlHost.cs
- WeakEventTable.cs
- DataGridViewRowConverter.cs
- FontUnitConverter.cs
- SamlAuthenticationClaimResource.cs
- MetafileHeaderEmf.cs
- LoginAutoFormat.cs
- PlaceHolder.cs
- WebPartCatalogAddVerb.cs
- HandlerFactoryCache.cs
- PrivilegedConfigurationManager.cs
- JoinElimination.cs
- CapabilitiesAssignment.cs
- RegexTypeEditor.cs
- OrthographicCamera.cs
- SessionSwitchEventArgs.cs
- BinaryObjectInfo.cs
- EmbossBitmapEffect.cs
- LongValidatorAttribute.cs
- SynchronizationContext.cs
- SystemColorTracker.cs
- AssertFilter.cs
- RSAOAEPKeyExchangeDeformatter.cs
- UseLicense.cs
- VerticalAlignConverter.cs
- glyphs.cs
- ResizeBehavior.cs
- LicFileLicenseProvider.cs
- XmlQueryStaticData.cs
- HttpWriter.cs
- RemotingException.cs
- AssemblyInfo.cs
- DefaultClaimSet.cs
- CheckoutException.cs
- CompModSwitches.cs
- _NetRes.cs
- DataGridRow.cs