CefRemoveCrossOriginWhitelistEntry Method |
Version 130.1.90Remove entry from cross-origin whitelist
Namespace: CefSharpAssembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax public static bool RemoveCrossOriginWhitelistEntry(
string sourceOrigin,
string targetProtocol,
string targetDomain,
bool allowTargetSubdomains
)
public:
static bool RemoveCrossOriginWhitelistEntry(
String^ sourceOrigin,
String^ targetProtocol,
String^ targetDomain,
bool allowTargetSubdomains
)
Parameters
- sourceOrigin String
- The origin allowed to be accessed by the target protocol/domain.
- targetProtocol String
- The target protocol allowed to access the source origin.
- targetDomain String
- The optional target domain allowed to access the source origin.
- allowTargetSubdomains Boolean
- If set to true would allow a blah.example.com if the
targetDomain was set to example.com
Return Value
Boolean[Missing <returns> documentation for "M:CefSharp.Cef.RemoveCrossOriginWhitelistEntry(System.String,System.String,System.String,System.Boolean)"]
Remarks
Remove an entry from the cross-origin access whitelist. Returns false if
sourceOrigin is invalid or the whitelist cannot be accessed.
See Also