ICertificateProviderrootCertIsTrusted Method |
When this method is called, your extension should check to see if the User or Machine Root
certificate store contains your Root certificate.
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax bool rootCertIsTrusted(
out bool bUserTrusted,
out bool bMachineTrusted
)
Function rootCertIsTrusted (
<OutAttribute> ByRef bUserTrusted As Boolean,
<OutAttribute> ByRef bMachineTrusted As Boolean
) As Boolean
bool rootCertIsTrusted(
[OutAttribute] bool% bUserTrusted,
[OutAttribute] bool% bMachineTrusted
)
Parameters
- bUserTrusted
- Type: SystemBoolean
Set to TRUE if StoreLocation.CurrentUser StoreName.Root has the certificate - bMachineTrusted
- Type: SystemBoolean
Set to TRUE if StoreLocation.LocalMachine StoreName.Root has the certificate
Return Value
Type:
BooleanTRUE if either bUserTrusted or bMachineTrusted
See Also