Represents a method that receives a security context when a secure channel is established.

Syntax

public delegate void Tmsch_ConsentCallback(
    IntPtr pContext,
    UInt32 dwContextAttributes
);
                
Members

The TMsch_ConsentCallback delegate exposes the following members:

Member Description
Methods The public GetHashCode, GetType, and ToString methods, and the protected Finalize method.
Delegates The Invoke method.
Remarks

The TMsch_ConsentCallback delegate is used by the .NET Framework to receive callbacks related to the establishment of secure channels. This delegate signature is typically used internally and is not intended for direct use by application developers.

The pContext parameter provides a pointer to the security context. The dwContextAttributes parameter contains attributes associated with the context.

Understanding this delegate is primarily relevant for developers working with lower-level networking security mechanisms or debugging complex security-related issues within the .NET Framework.

Requirements
Component Value
Namespace System.Net.Security
Assembly System.Net.dll