15 references to CommonBehaviorsSection
System.ServiceModel (15)
System\ServiceModel\Configuration\CommonBehaviorsSection.cs (6)
25
internal static
CommonBehaviorsSection
GetSection()
27
return (
CommonBehaviorsSection
)ConfigurationHelpers.GetSection(ConfigurationStrings.CommonBehaviorsSectionPath);
33
internal static
CommonBehaviorsSection
UnsafeGetSection()
35
return (
CommonBehaviorsSection
)ConfigurationHelpers.UnsafeGetSection(ConfigurationStrings.CommonBehaviorsSectionPath);
41
internal static
CommonBehaviorsSection
UnsafeGetAssociatedSection(ContextInformation contextEval)
43
return (
CommonBehaviorsSection
)ConfigurationHelpers.UnsafeGetAssociatedSection(contextEval, ConfigurationStrings.CommonBehaviorsSectionPath);
System\ServiceModel\Configuration\ServiceModelSectionGroup.cs (2)
35
public
CommonBehaviorsSection
CommonBehaviors
37
get { return (
CommonBehaviorsSection
)this.Sections[ConfigurationStrings.CommonBehaviorsSectionName]; }
System\ServiceModel\Description\ConfigLoader.cs (7)
172
CommonBehaviorsSection
commonBehaviors = ConfigLoader.LookupCommonBehaviors(ConfigurationHelpers.GetEvaluationContext(channelElement));
191
CommonBehaviorsSection
commonBehaviors = ConfigLoader.LookupCommonBehaviors(this.configurationContext);
439
CommonBehaviorsSection
commonBehaviors = ConfigLoader.LookupCommonBehaviors(
764
CommonBehaviorsSection
commonBehaviors = ConfigLoader.LookupCommonBehaviors(ConfigurationHelpers.GetEvaluationContext(channelEndpointElement));
1261
static
CommonBehaviorsSection
LookupCommonBehaviors(ContextInformation context)
1269
?
CommonBehaviorsSection
.UnsafeGetSection()
1270
:
CommonBehaviorsSection
.UnsafeGetAssociatedSection(context);