Skip to content

Commit a688bcb

Browse files
committed
IFrame.LoadRequest - Update xml doc
LoadRequest can only be called when a render process has already been created, suggest loading a data uri initially http://magpcss.org/ceforum/viewtopic.php?f=6&t=16058&p=38563&hilit=LoadRequest#p38559 Resolves #2451
1 parent a338369 commit a688bcb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

CefSharp/IFrame.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,10 @@ public interface IFrame : IDisposable
9090
void GetText(IStringVisitor visitor);
9191

9292
/// <summary>
93-
/// Load the custom request.
93+
/// Load the custom request. LoadRequest can only be used if a renderer process already exists.
94+
/// In newer versions initially loading about:blank no longer creates a renderer process. You
95+
/// can load a Data Uri initially then call this method.
96+
/// https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs
9497
/// </summary>
9598
/// <param name="request">request to be loaded in the frame</param>
9699
void LoadRequest(IRequest request);

0 commit comments

Comments
 (0)