21 references to BehaviorsSection
System.ServiceModel (21)
System\ServiceModel\Configuration\BehaviorsSection.cs (10)
26
internal static
BehaviorsSection
GetSection()
28
return (
BehaviorsSection
)ConfigurationHelpers.GetSection(ConfigurationStrings.BehaviorsSectionPath);
34
internal static
BehaviorsSection
UnsafeGetSection()
36
return (
BehaviorsSection
)ConfigurationHelpers.UnsafeGetSection(ConfigurationStrings.BehaviorsSectionPath);
42
internal static
BehaviorsSection
UnsafeGetAssociatedSection(ContextInformation evalContext)
44
return (
BehaviorsSection
)ConfigurationHelpers.UnsafeGetAssociatedSection(evalContext, ConfigurationStrings.BehaviorsSectionPath);
64
BehaviorsSection
behaviors = (
BehaviorsSection
)ConfigurationHelpers.UnsafeGetAssociatedSection(evaluationContext, ConfigurationStrings.BehaviorsSectionPath);
92
BehaviorsSection
behaviors = (
BehaviorsSection
)ConfigurationHelpers.UnsafeGetAssociatedSection(evaluationContext, ConfigurationStrings.BehaviorsSectionPath);
System\ServiceModel\Configuration\ClientSection.cs (1)
87
BehaviorsSection
.ValidateEndpointBehaviorReference(endpoint.BehaviorConfiguration, context, endpoint);
System\ServiceModel\Configuration\ServiceModelSectionGroup.cs (2)
15
public
BehaviorsSection
Behaviors
17
get { return (
BehaviorsSection
)this.Sections[ConfigurationStrings.BehaviorsSectionName]; }
System\ServiceModel\Configuration\ServicesSection.cs (2)
54
BehaviorsSection
.ValidateServiceBehaviorReference(service.BehaviorConfiguration, context, service);
73
BehaviorsSection
.ValidateEndpointBehaviorReference(endpoint.BehaviorConfiguration, context, endpoint);
System\ServiceModel\Description\ConfigLoader.cs (6)
1204
BehaviorsSection
behaviors = null;
1207
behaviors =
BehaviorsSection
.UnsafeGetSection();
1211
behaviors =
BehaviorsSection
.UnsafeGetAssociatedSection(context);
1238
BehaviorsSection
behaviors = null;
1241
behaviors =
BehaviorsSection
.UnsafeGetSection();
1245
behaviors =
BehaviorsSection
.UnsafeGetAssociatedSection(context);