e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
//-----------------------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
namespace System.ServiceModel.Activation.Configuration
|
|
{
|
|
using System;
|
|
using System.ComponentModel;
|
|
using System.Configuration;
|
|
using System.Security.Principal;
|
|
|
|
public sealed partial class SecurityIdentifierElement : ConfigurationElement
|
|
{
|
|
public SecurityIdentifierElement()
|
|
: base()
|
|
{
|
|
}
|
|
|
|
public SecurityIdentifierElement(SecurityIdentifier sid)
|
|
: this()
|
|
{
|
|
this.SecurityIdentifier = sid;
|
|
}
|
|
|
|
[ConfigurationProperty(ConfigurationStrings.SecurityIdentifier, DefaultValue = null, Options = ConfigurationPropertyOptions.IsKey)]
|
|
[TypeConverter(typeof(SecurityIdentifierConverter))]
|
|
public SecurityIdentifier SecurityIdentifier
|
|
{
|
|
get { return (SecurityIdentifier)base[ConfigurationStrings.SecurityIdentifier]; }
|
|
set { base[ConfigurationStrings.SecurityIdentifier] = value; }
|
|
}
|
|
}
|
|
}
|