You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a third party lib, contains hundreds of class, each class concain 10 ~ 100+ method & property.
I try to use this in CefSharp browser, but it is unwise to create .Net wrapper for every class.
The best way is create a simple wrapper class, contain base class info,
in script, just simply use ob.methodA(); ob.propertyA = 'a';
in wrapper .Net class , just catch the access event, then find and run or show error like "method/propert not found".
Then i try extend class from System.Dynamic, but it does not support.
// CefSharp/Internals/JavascriptObjectRepository.cs , line 240
// method Register
var type = value.GetType();
if (type.IsPrimitive || type.BaseType.Namespace.StartsWith("System."))
{
throw new ArgumentException("Registering of .Net framework built in types is not supported, " +
"create your own Object and proxy the calls if you need to access a Window/Form/Control.", "value");
}
i don't known why, mayby security issue?
i read source code to find a way to use dynamic method or property
finally, i think there is no way to do this.
// CefSharp/Internals/JavascriptObjectRepository.cs
// method AnalyseObjectForBinding
// line 670 - 699
// it cache the method to List
// CefSharp/Internals/JavascriptObjectRepository.cs
// method TryCallMethod
// line 301 - 305
// simply check List, if not found, throw error
also there can be an ugly way to use , wrapper class create proxy method
and use in script like ob.proxyCall('methodA', []); ob.proxyGet('propertyA')
it's too silly.
build custom cefsharp is hard and heavy to me, so i create this issue
suggest some way to support Dynamic method & property for script object registered from .Net
here is my solution:
[1] create interface to declear .Net class need Dynamic method & property support
// method TryCallMethod & TryCallMethodAsync
// if method not found
// if obj implement IDynamicMethod , try get method from obj.resolveDynamicMethod
// do some validation & check (such as security issue) then wrap .Net MethodInfo to JavascriptMethod
// method TryGetProperty & TrySetProperty
// if property not found
// if obj implement IDynamicProperty, try get property from obj.resolveDynamicProperty
// do some validation & check (such as security issue) then wrap .Net PropertyInfo to JavascriptProperty
then we done, it's simply change few lines.
may be can cache dynamic wrappered JavascriptMethod or JavascriptProperty
but the better way is let user decide and write extra code to cache MethodInfo and PropertyInfo.
now if user require Dynamic Method or Property
just implment IDynamicMethod or IDynamicProperty,it‘s simple , elegent and comfortable.
The text was updated successfully, but these errors were encountered:
@WeeMud if you can code just not compile I can test for you. A simpler option however is to use an invisible proxy. Use a native javascript proxy and you can access things as properties and functions to your hearts content, then have the native js proxy call a CS proxied helper like you gave before: external.getProp("propName") external.callFunc("funcName") on the C# side its easy to turn those back into dynamic calls.
Here is JS to do the proxying change the console.log per above. It nicely figures out prop/method call:
I have a third party lib, contains hundreds of class, each class concain 10 ~ 100+ method & property.
I try to use this in CefSharp browser, but it is unwise to create .Net wrapper for every class.
The best way is create a simple wrapper class, contain base class info,
in script, just simply use
ob.methodA(); ob.propertyA = 'a';
in wrapper .Net class , just catch the access event, then find and run or show error like "method/propert not found".
Then i try extend class from System.Dynamic, but it does not support.
i don't known why, mayby security issue?
i read source code to find a way to use dynamic method or property
finally, i think there is no way to do this.
also there can be an ugly way to use , wrapper class create proxy method
and use in script like
ob.proxyCall('methodA', []); ob.proxyGet('propertyA')
it's too silly.
build custom cefsharp is hard and heavy to me, so i create this issue
suggest some way to support Dynamic method & property for script object registered from .Net
here is my solution:
[1] create interface to declear .Net class need Dynamic method & property support
[2] modify
CefSharp/Internals/JavascriptObjectRepository.cs
then we done, it's simply change few lines.
may be can cache dynamic wrappered JavascriptMethod or JavascriptProperty
but the better way is let user decide and write extra code to cache MethodInfo and PropertyInfo.
now if user require Dynamic Method or Property
just implment IDynamicMethod or IDynamicProperty,it‘s simple , elegent and comfortable.
The text was updated successfully, but these errors were encountered: