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
{
Collection signed = 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
- FontStyles.cs
- DataGridColumnCollection.cs
- Dynamic.cs
- remotingproxy.cs
- SqlConnectionHelper.cs
- RuntimeArgumentHandle.cs
- MetricEntry.cs
- Typeface.cs
- Exception.cs
- MergablePropertyAttribute.cs
- EntityContainerEmitter.cs
- Preprocessor.cs
- PropertyGridView.cs
- ThreadStateException.cs
- HttpServerChannel.cs
- ConnectionString.cs
- D3DImage.cs
- FlowDocumentScrollViewer.cs
- SetStateDesigner.cs
- StreamGeometry.cs
- EarlyBoundInfo.cs
- ContainerParagraph.cs
- Stylesheet.cs
- ParenthesizePropertyNameAttribute.cs
- LineGeometry.cs
- CngKey.cs
- XmlSchemaSimpleType.cs
- ClockGroup.cs
- NodeInfo.cs
- FixedSOMFixedBlock.cs
- TemplateContentLoader.cs
- StateMachine.cs
- SqlParameterizer.cs
- DataGridViewButtonCell.cs
- NotFiniteNumberException.cs
- AuthenticationSection.cs
- ClientRoleProvider.cs
- UTF32Encoding.cs
- CustomAttributeFormatException.cs
- RtfControlWordInfo.cs
- ValidateNames.cs
- TableDesigner.cs
- LinkLabelLinkClickedEvent.cs
- ClientBuildManagerCallback.cs
- PreProcessor.cs
- EntitySetBaseCollection.cs
- OdbcPermission.cs
- OleDbConnection.cs
- DataListItemEventArgs.cs
- Object.cs
- WebPartEditVerb.cs
- EditorServiceContext.cs
- Literal.cs
- AppDomain.cs
- RelativeSource.cs
- Atom10FormatterFactory.cs
- httpstaticobjectscollection.cs
- SoapElementAttribute.cs
- FirewallWrapper.cs
- Type.cs
- datacache.cs
- KeyedCollection.cs
- SpnegoTokenProvider.cs
- FillRuleValidation.cs
- CodeConstructor.cs
- SpellerStatusTable.cs
- CustomError.cs
- Brush.cs
- ListBindingConverter.cs
- RegexWorker.cs
- EndEvent.cs
- PageTheme.cs
- XslException.cs
- EdgeProfileValidation.cs
- ElementMarkupObject.cs
- Marshal.cs
- AssociationSetMetadata.cs
- IndependentAnimationStorage.cs
- UInt32.cs
- AsymmetricSecurityProtocolFactory.cs
- DialogResultConverter.cs
- SortFieldComparer.cs
- PermissionRequestEvidence.cs
- WebPartVerbsEventArgs.cs
- ActivitySurrogateSelector.cs
- TdsEnums.cs
- DataRecordObjectView.cs
- ToolStripContainer.cs
- _UriTypeConverter.cs
- DropShadowBitmapEffect.cs
- AuthenticationManager.cs
- HttpRuntimeSection.cs
- Model3DGroup.cs
- ILGenerator.cs
- SolidColorBrush.cs
- StaticExtension.cs
- InvalidCastException.cs
- StaticResourceExtension.cs
- ArglessEventHandlerProxy.cs
- QilInvokeEarlyBound.cs