Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ServiceAuthorizationManager::CheckAccess Method (OperationContext^, Message^%)

 

Checks authorization for the given operation context when access to a message is required.

Namespace:   System.ServiceModel
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
virtual bool CheckAccess(
	OperationContext^ operationContext,
	Message^% message
)

Parameters

operationContext
Type: System.ServiceModel::OperationContext^

The OperationContext.

message
Type: System.ServiceModel.Channels::Message^%

The Message to be examined to determine authorization.

Return Value

Type: System::Boolean

true if access is granted; otherwise; otherwise false. The default is true.

In general, applications should override CheckAccessCore instead of this method, which should only be used if the authorization decision depends on the message body. Because of performance issues, if possible you should redesign your application so that the authorization decision does not require access to the message body.

Override this method if the application associates or introduces a different set of policies for the resulting ServiceSecurityContext and Message or provide a different policy evaluation (chaining) model.

This method is responsible for calling CheckAccessCore.

The following code shows how to override this method to enforce custom access control requirements that require access to the message body.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft