public bool SessionResumptionRequiresExtendedMasterSecret { get; set; }Public Property SessionResumptionRequiresExtendedMasterSecret As Boolean
Get
Setpublic:
property bool SessionResumptionRequiresExtendedMasterSecret {
bool get ();
void set (bool value);
}member SessionResumptionRequiresExtendedMasterSecret : bool with get, setSession resumption is primarily a performance enhancement - it avoids some of the stages of the SSL handshake, using previously cached session data. For security, the specification requires the extended master secret to be used for session resumption, but some servers don't support it (and yet require session resumption). So it can be disabled using this property, but this is not recommended.
This property may be read any time, but may be set only prior to connection.