Esempio n. 1
0
 public SealedObject(InternalHandle h1, InternalHandle h2)
 {
     H1.Set(h1);
     H2 = h2;
 }
Esempio n. 2
0
 public JSProperty(TValueSource source, InternalHandle value, V8PropertyAttributes attributes = V8PropertyAttributes.None) : this(source, attributes)
 {
     _Value.Set(value);
 }
Esempio n. 3
0
 public V8Exception(InternalHandle handle, Exception innerException)
     : base(handle.AsString, innerException)
 {
     _Handle.Set(handle);
 }