Version 5.5.5: Enhanced ScriptObject to simplify script object access without "dynamic"; added IWindowsScriptObject (GitHub Issue #97); improved property accessor scriptability (GitHub Issue #88); updated API documentation. Tested with V8 7.2.502.25.

This commit is contained in:
ClearScript 2019-02-05 11:07:21 -05:00
Родитель 33036db296
Коммит fbd59e079b
588 изменённых файлов: 2096 добавлений и 1284 удалений

Просмотреть файл

@ -47,6 +47,7 @@
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpKeepExistingMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpPlaceEmbeddedOnSameLineMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpRenamePlacementToArrangementMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpUseContinuousIndentInsideBracesMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EAddAccessorOwnerDeclarationBracesMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002ECSharpPlaceAttributeOnSameLineMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateBlankLinesAroundFieldToBlankLinesAroundProperty/@EntryIndexedValue">True</s:Boolean>

Просмотреть файл

@ -47,6 +47,7 @@
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpKeepExistingMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpPlaceEmbeddedOnSameLineMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpRenamePlacementToArrangementMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpUseContinuousIndentInsideBracesMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EAddAccessorOwnerDeclarationBracesMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002ECSharpPlaceAttributeOnSameLineMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateBlankLinesAroundFieldToBlankLinesAroundProperty/@EntryIndexedValue">True</s:Boolean>

Просмотреть файл

@ -141,6 +141,7 @@
<Compile Include="V8\V8RuntimeFlags.cs" />
<Compile Include="V8\V8TestProxy.cs" />
<Compile Include="Windows\IHostWindow.cs" />
<Compile Include="Windows\IWindowsScriptObject.cs" />
<Compile Include="Windows\WindowsScriptEngineFlags.cs" />
<Compile Include="Util\IDynamic.cs" />
<Compile Include="Util\SpecialMemberNames.cs" />

Просмотреть файл

@ -5,5 +5,5 @@
#pragma once
#define CLEARSCRIPT_VERSION_STRING "5.5.4.0"
#define CLEARSCRIPT_VERSION_COMMA_SEPARATED 5,5,4,0
#define CLEARSCRIPT_VERSION_STRING "5.5.5.0"
#define CLEARSCRIPT_VERSION_COMMA_SEPARATED 5,5,5,0

Просмотреть файл

@ -968,7 +968,7 @@ namespace Microsoft.ClearScript
{
if (name == SpecialMemberNames.Default)
{
return TargetDynamic.Invoke(args, true);
return TargetDynamic.Invoke(true, args);
}
throw new InvalidOperationException("Invalid constructor invocation");
@ -980,7 +980,7 @@ namespace Microsoft.ClearScript
{
try
{
return TargetDynamic.Invoke(args, false);
return TargetDynamic.Invoke(false, args);
}
catch (Exception)
{
@ -1302,7 +1302,7 @@ namespace Microsoft.ClearScript
var enumerableHelpersHostItem = Wrap(engine, EnumerableHelpers.HostType, HostItemFlags.PrivateAccess);
try
{
return ((IDynamic)enumerableHelpersHostItem).InvokeMethod("GetEnumerator", new object[] { this });
return ((IDynamic)enumerableHelpersHostItem).InvokeMethod("GetEnumerator", this);
}
catch (MissingMemberException)
{
@ -1542,7 +1542,7 @@ namespace Microsoft.ClearScript
}
var getMethod = property.GetMethod;
if ((getMethod == null) || !getMethod.IsAccessible(accessContext) || getMethod.IsBlockedFromScript(defaultAccess))
if ((getMethod == null) || !getMethod.IsAccessible(accessContext) || getMethod.IsBlockedFromScript(defaultAccess, false))
{
throw new UnauthorizedAccessException("Property get method is unavailable or inaccessible");
}
@ -1655,7 +1655,7 @@ namespace Microsoft.ClearScript
}
var setMethod = property.SetMethod;
if ((setMethod == null) || !setMethod.IsAccessible(accessContext) || setMethod.IsBlockedFromScript(defaultAccess))
if ((setMethod == null) || !setMethod.IsAccessible(accessContext) || setMethod.IsBlockedFromScript(defaultAccess, false))
{
throw new UnauthorizedAccessException("Property set method is unavailable or inaccessible");
}
@ -1697,7 +1697,7 @@ namespace Microsoft.ClearScript
public override bool TryCreateInstance(CreateInstanceBinder binder, object[] args, out object result)
{
result = ThisDynamic.Invoke(args, true).ToDynamicResult(engine);
result = ThisDynamic.Invoke(true, args).ToDynamicResult(engine);
return true;
}
@ -1709,7 +1709,7 @@ namespace Microsoft.ClearScript
public override bool TrySetMember(SetMemberBinder binder, object value)
{
ThisDynamic.SetProperty(binder.Name, new[] { value });
ThisDynamic.SetProperty(binder.Name, value);
return true;
}
@ -1730,7 +1730,7 @@ namespace Microsoft.ClearScript
if (indices.Length > 1)
{
result = ThisDynamic.GetProperty(SpecialMemberNames.Default, indices);
result = ThisDynamic.GetProperty(SpecialMemberNames.Default, indices).ToDynamicResult(engine);
return true;
}
@ -1748,7 +1748,7 @@ namespace Microsoft.ClearScript
return true;
}
ThisDynamic.SetProperty(indices[0].ToString(), new[] { value });
ThisDynamic.SetProperty(indices[0].ToString(), value);
return true;
}
@ -1762,7 +1762,7 @@ namespace Microsoft.ClearScript
public override bool TryInvoke(InvokeBinder binder, object[] args, out object result)
{
result = ThisDynamic.Invoke(args, false).ToDynamicResult(engine);
result = ThisDynamic.Invoke(false, args).ToDynamicResult(engine);
return true;
}
@ -1930,12 +1930,12 @@ namespace Microsoft.ClearScript
#region IDynamic implementation
object IDynamic.GetProperty(string name, object[] args)
object IDynamic.GetProperty(string name, params object[] args)
{
return InvokeReflectMember(name, BindingFlags.GetProperty, args, CultureInfo.InvariantCulture, null);
}
object IDynamic.GetProperty(string name, object[] args, out bool isCacheable)
object IDynamic.GetProperty(string name, out bool isCacheable, params object[] args)
{
return InvokeReflectMember(name, BindingFlags.GetProperty, args, CultureInfo.InvariantCulture, null, out isCacheable);
}
@ -2011,7 +2011,7 @@ namespace Microsoft.ClearScript
void IDynamic.SetProperty(int index, object value)
{
ThisDynamic.SetProperty(index.ToString(CultureInfo.InvariantCulture), new[] { value });
ThisDynamic.SetProperty(index.ToString(CultureInfo.InvariantCulture), value);
}
bool IDynamic.DeleteProperty(int index)
@ -2064,12 +2064,12 @@ namespace Microsoft.ClearScript
});
}
object IDynamic.Invoke(object[] args, bool asConstructor)
object IDynamic.Invoke(bool asConstructor, params object[] args)
{
return ThisReflect.InvokeMember(SpecialMemberNames.Default, asConstructor ? BindingFlags.CreateInstance : ((args.Length < 1) ? BindingFlags.InvokeMethod : BindingFlags.InvokeMethod | BindingFlags.GetProperty), null, ThisReflect, args, null, CultureInfo.InvariantCulture, null);
}
object IDynamic.InvokeMethod(string name, object[] args)
object IDynamic.InvokeMethod(string name, params object[] args)
{
return ThisReflect.InvokeMember(name, BindingFlags.InvokeMethod, null, ThisReflect, args, null, CultureInfo.InvariantCulture, null);
}

Просмотреть файл

@ -17,13 +17,13 @@ using System.Runtime.InteropServices;
[assembly: InternalsVisibleTo("ClearScriptTest")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("5.5.4.0")]
[assembly: AssemblyFileVersion("5.5.4.0")]
[assembly: AssemblyVersion("5.5.5.0")]
[assembly: AssemblyFileVersion("5.5.5.0")]
namespace Microsoft.ClearScript.Properties
{
internal static class ClearScriptVersion
{
public const string Value = "5.5.4.0";
public const string Value = "5.5.5.0";
}
}

Просмотреть файл

@ -161,16 +161,20 @@ namespace Microsoft.ClearScript
#endregion
#region IEnumerable<KeyValuePair<string, object>> implementation
#region IEnumerable implementation
[SuppressMessage("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes", Justification = "This member requires explicit implementation to resolve ambiguity.")]
IEnumerator<KeyValuePair<string, object>> IEnumerable<KeyValuePair<string, object>>.GetEnumerator()
IEnumerator IEnumerable.GetEnumerator()
{
return dictionary.GetEnumerator();
}
#endregion
#region IEnumerable<KeyValuePair<string, object>> implementation
[SuppressMessage("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes", Justification = "This member requires explicit implementation to resolve ambiguity.")]
IEnumerator IEnumerable.GetEnumerator()
IEnumerator<KeyValuePair<string, object>> IEnumerable<KeyValuePair<string, object>>.GetEnumerator()
{
return dictionary.GetEnumerator();
}

Просмотреть файл

@ -143,6 +143,32 @@ namespace Microsoft.ClearScript
return new DynamicMetaObject(Expression.TryCatchFinally(result.Expression, Expression.Call(clearLastScriptErrorMethod), Expression.Catch(typeof(Exception), catchBody)), result.Restrictions);
}
#region ScriptObject overrides
public override IEnumerable<string> PropertyNames
{
get { return GetPropertyNames(); }
}
public override IEnumerable<int> PropertyIndices
{
get { return GetPropertyIndices(); }
}
public new object this[string name, params object[] args]
{
get { return GetProperty(name, args).ToDynamicResult(Engine); }
set { SetProperty(name, args.Concat(new[] { value }).ToArray()); }
}
public new object this[int index]
{
get { return GetProperty(index).ToDynamicResult(Engine); }
set { SetProperty(index, value); }
}
#endregion
#region DynamicObject overrides
public override DynamicMetaObject GetMetaObject(Expression param)
@ -263,7 +289,7 @@ namespace Microsoft.ClearScript
{
if (name == SpecialMemberNames.Default)
{
return Invoke(args, false);
return Invoke(false, args);
}
return InvokeMethod(name, args);
@ -336,7 +362,7 @@ namespace Microsoft.ClearScript
#region IDynamic implementation
public object GetProperty(string name, object[] args, out bool isCacheable)
public object GetProperty(string name, out bool isCacheable, params object[] args)
{
isCacheable = false;
return GetProperty(name, args);
@ -346,16 +372,8 @@ namespace Microsoft.ClearScript
#region IDynamic implementation (abstract)
public abstract object GetProperty(string name, object[] args);
public abstract void SetProperty(string name, object[] args);
public abstract bool DeleteProperty(string name);
public abstract string[] GetPropertyNames();
public abstract object GetProperty(int index);
public abstract void SetProperty(int index, object value);
public abstract bool DeleteProperty(int index);
public abstract int[] GetPropertyIndices();
public abstract object Invoke(object[] args, bool asConstructor);
public abstract object InvokeMethod(string name, object[] args);
#endregion

Просмотреть файл

@ -1,15 +1,12 @@
using System.Dynamic;
using System.Collections.Generic;
using System.Dynamic;
using System.Linq;
namespace Microsoft.ClearScript
{
/// <summary>
/// Represents a script object.
/// </summary>
/// <remarks>
/// Use this class in conjunction with C#'s
/// <c><see href="https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/is">is</see></c>
/// operator to identify script objects.
/// </remarks>
/// <seealso cref="ScriptEngine.Evaluate(string, bool, string)"/>
public abstract class ScriptObject : DynamicObject
{
@ -21,5 +18,101 @@ namespace Microsoft.ClearScript
/// Gets the script engine that owns the object.
/// </summary>
public abstract ScriptEngine Engine { get; }
/// <summary>
/// Gets the value of a named script object property.
/// </summary>
/// <param name="name">The name of the property to get.</param>
/// <param name="args">Optional arguments for property retrieval.</param>
/// <returns>The value of the specified property.</returns>
public abstract object GetProperty(string name, params object[] args);
/// <summary>
/// Sets the value of a named script object property.
/// </summary>
/// <param name="name">The name of the property to set.</param>
/// <param name="args">An array containing optional arguments and the new property value.</param>
/// <remarks>
/// The <paramref name="args"></paramref> array must contain at least one element. The new
/// property value must be the last element of the array.
/// </remarks>
public abstract void SetProperty(string name, params object[] args);
/// <summary>
/// Removes a named script object property.
/// </summary>
/// <param name="name">The name of the property to remove.</param>
/// <returns><c>True</c> if the property was removed successfully, <c>false</c> otherwise.</returns>
public abstract bool DeleteProperty(string name);
/// <summary>
/// Enumerates the script object's property names.
/// </summary>
public abstract IEnumerable<string> PropertyNames { get; }
/// <summary>
/// Gets or sets the value of a named script object property.
/// </summary>
/// <param name="name">The name of the property to get or set.</param>
/// <param name="args">Optional arguments for property access.</param>
/// <returns>The value of the specified property.</returns>
public object this[string name, params object[] args]
{
get { return GetProperty(name, args); }
set { SetProperty(name, args.Concat(new[] { value }).ToArray()); }
}
/// <summary>
/// Gets the value of an indexed script object property.
/// </summary>
/// <param name="index">The index of the property to get.</param>
/// <returns>The value of the specified property.</returns>
public abstract object GetProperty(int index);
/// <summary>
/// Sets the value of an indexed script object property.
/// </summary>
/// <param name="index">The index of the property to set.</param>
/// <param name="value">The new property value.</param>
public abstract void SetProperty(int index, object value);
/// <summary>
/// Removes an indexed script object property.
/// </summary>
/// <param name="index">The index of the property to remove.</param>
/// <returns><c>True</c> if the property was removed successfully, <c>false</c> otherwise.</returns>
public abstract bool DeleteProperty(int index);
/// <summary>
/// Enumerates the script object's property indices.
/// </summary>
public abstract IEnumerable<int> PropertyIndices { get; }
/// <summary>
/// Gets or sets the value of an indexed script object property.
/// </summary>
/// <param name="index">The index of the property to get or set.</param>
/// <returns>The value of the specified property.</returns>
public object this[int index]
{
get { return GetProperty(index); }
set { SetProperty(index, value); }
}
/// <summary>
/// Invokes the script object.
/// </summary>
/// <param name="asConstructor"><c>True</c> to invoke the object as a constructor, <c>false</c> otherwise.</param>
/// <param name="args">Optional arguments for object invocation.</param>
/// <returns>The invocation result value.</returns>
public abstract object Invoke(bool asConstructor, params object[] args);
/// <summary>
/// Invokes a script object method.
/// </summary>
/// <param name="name">The name of the method to invoke.</param>
/// <param name="args">Optional arguments for method invocation.</param>
/// <returns>The invocation result value.</returns>
public abstract object InvokeMethod(string name, params object[] args);
}
}

Просмотреть файл

@ -91,7 +91,7 @@ namespace Microsoft.ClearScript.Util
}
}
public static object Invoke(this IDispatchEx dispatchEx, object[] args, bool asConstructor)
public static object Invoke(this IDispatchEx dispatchEx, bool asConstructor, object[] args)
{
using (var argVariantArrayBlock = new CoTaskMemVariantArgsByRefBlock(args))
{
@ -132,19 +132,19 @@ namespace Microsoft.ClearScript.Util
this.dispatchEx = dispatchEx;
}
public object GetProperty(string name, object[] args)
public object GetProperty(string name, params object[] args)
{
bool isCacheable;
return GetProperty(name, args, out isCacheable);
return GetProperty(name, out isCacheable, args);
}
public object GetProperty(string name, object[] args, out bool isCacheable)
public object GetProperty(string name, out bool isCacheable, params object[] args)
{
isCacheable = false;
return dispatchEx.GetProperty(name, false, args);
}
public void SetProperty(string name, object[] args)
public void SetProperty(string name, params object[] args)
{
dispatchEx.SetProperty(name, false, args);
}
@ -179,12 +179,12 @@ namespace Microsoft.ClearScript.Util
return dispatchEx.GetPropertyNames().GetIndices().ToArray();
}
public object Invoke(object[] args, bool asConstructor)
public object Invoke(bool asConstructor, params object[] args)
{
return dispatchEx.Invoke(args, asConstructor);
return dispatchEx.Invoke(asConstructor, args);
}
public object InvokeMethod(string name, object[] args)
public object InvokeMethod(string name, params object[] args)
{
return dispatchEx.InvokeMethod(name, false, args);
}

Просмотреть файл

@ -278,7 +278,7 @@ namespace Microsoft.ClearScript.Util
// creates for the invocation arguments. This issue has been reported. In the
// meantime we'll bypass this facility and interface with IDispatchEx directly.
result = dispatchEx.Invoke(args, true);
result = dispatchEx.Invoke(true, args);
return true;
}
@ -311,7 +311,7 @@ namespace Microsoft.ClearScript.Util
// creates for the invocation arguments. This issue has been reported. In the
// meantime we'll bypass this facility and interface with IDispatchEx directly.
result = dispatchEx.Invoke(args, false);
result = dispatchEx.Invoke(false, args);
return true;
}

Просмотреть файл

@ -5,9 +5,9 @@ namespace Microsoft.ClearScript.Util
{
internal interface IDynamic
{
object GetProperty(string name, object[] args);
object GetProperty(string name, object[] args, out bool isCacheable);
void SetProperty(string name, object[] args);
object GetProperty(string name, params object[] args);
object GetProperty(string name, out bool isCacheable, params object[] args);
void SetProperty(string name, params object[] args);
bool DeleteProperty(string name);
string[] GetPropertyNames();
@ -16,7 +16,7 @@ namespace Microsoft.ClearScript.Util
bool DeleteProperty(int index);
int[] GetPropertyIndices();
object Invoke(object[] args, bool asConstructor);
object InvokeMethod(string name, object[] args);
object Invoke(bool asConstructor, params object[] args);
object InvokeMethod(string name, params object[] args);
}
}

Просмотреть файл

@ -220,9 +220,9 @@ namespace Microsoft.ClearScript.Util
return ((attribute != null) && (attribute.Name != null)) ? attribute.Name : member.GetShortName();
}
public static bool IsBlockedFromScript(this MemberInfo member, ScriptAccess defaultAccess)
public static bool IsBlockedFromScript(this MemberInfo member, ScriptAccess defaultAccess, bool chain = true)
{
return member.GetScriptAccess(defaultAccess) == ScriptAccess.None;
return member.GetScriptAccess(defaultAccess, chain) == ScriptAccess.None;
}
public static bool IsReadOnlyForScript(this MemberInfo member, ScriptAccess defaultAccess)
@ -230,7 +230,7 @@ namespace Microsoft.ClearScript.Util
return member.GetScriptAccess(defaultAccess) == ScriptAccess.ReadOnly;
}
public static ScriptAccess GetScriptAccess(this MemberInfo member, ScriptAccess defaultValue)
public static ScriptAccess GetScriptAccess(this MemberInfo member, ScriptAccess defaultValue, bool chain = true)
{
var attribute = member.GetAttribute<ScriptUsageAttribute>(true);
if (attribute != null)
@ -238,35 +238,38 @@ namespace Microsoft.ClearScript.Util
return attribute.Access;
}
var declaringType = member.DeclaringType;
if (declaringType != null)
if (chain)
{
var testType = declaringType;
do
var declaringType = member.DeclaringType;
if (declaringType != null)
{
if (testType.IsNested)
var testType = declaringType;
do
{
var nestedTypeAttribute = testType.GetAttribute<ScriptUsageAttribute>(true);
if (nestedTypeAttribute != null)
if (testType.IsNested)
{
return nestedTypeAttribute.Access;
var nestedTypeAttribute = testType.GetAttribute<ScriptUsageAttribute>(true);
if (nestedTypeAttribute != null)
{
return nestedTypeAttribute.Access;
}
}
}
var typeAttribute = testType.GetAttribute<DefaultScriptUsageAttribute>(true);
if (typeAttribute != null)
var typeAttribute = testType.GetAttribute<DefaultScriptUsageAttribute>(true);
if (typeAttribute != null)
{
return typeAttribute.Access;
}
testType = testType.DeclaringType;
} while (testType != null);
var assemblyAttribute = declaringType.Assembly.GetAttribute<DefaultScriptUsageAttribute>(true);
if (assemblyAttribute != null)
{
return typeAttribute.Access;
return assemblyAttribute.Access;
}
testType = testType.DeclaringType;
} while (testType != null);
var assemblyAttribute = declaringType.Assembly.GetAttribute<DefaultScriptUsageAttribute>(true);
if (assemblyAttribute != null)
{
return assemblyAttribute.Access;
}
}

Просмотреть файл

@ -170,7 +170,7 @@ void HostObjectHelpers::GetPropertyIndices(void* pvObject, std::vector<int>& ind
//-----------------------------------------------------------------------------
V8Value HostObjectHelpers::Invoke(void* pvObject, const std::vector<V8Value>& args, bool asConstructor)
V8Value HostObjectHelpers::Invoke(void* pvObject, bool asConstructor, const std::vector<V8Value>& args)
{
try
{
@ -182,7 +182,7 @@ V8Value HostObjectHelpers::Invoke(void* pvObject, const std::vector<V8Value>& ar
exportedArgs[index] = V8ContextProxyImpl::ExportValue(args[index]);
}
return V8ContextProxyImpl::ImportValue(V8ProxyHelpers::InvokeHostObject(pvObject, exportedArgs, asConstructor));
return V8ContextProxyImpl::ImportValue(V8ProxyHelpers::InvokeHostObject(pvObject, asConstructor, exportedArgs));
}
catch (Exception^ gcException)
{

Просмотреть файл

@ -27,7 +27,7 @@ public:
static bool DeleteProperty(void* pvObject, int index);
static void GetPropertyIndices(void* pvObject, std::vector<int>& indices);
static V8Value Invoke(void* pvObject, const std::vector<V8Value>& args, bool asConstructor);
static V8Value Invoke(void* pvObject, bool asConstructor, const std::vector<V8Value>& args);
static V8Value InvokeMethod(void* pvObject, const StdString& name, const std::vector<V8Value>& args);
enum class V8Invocability { None, Delegate, Other };

Просмотреть файл

@ -126,7 +126,7 @@ OnceFlag::OnceFlag():
void OnceFlag::CallOnce(const std::function<void()>& func)
{
m_pImpl->CallOnce(std::move(func));
m_pImpl->CallOnce(func);
}
//-----------------------------------------------------------------------------

Просмотреть файл

@ -214,8 +214,7 @@ V8ContextImpl::V8ContextImpl(V8IsolateImpl* pIsolateImpl, const StdString& name,
m_spIsolateImpl(pIsolateImpl),
m_DateTimeConversionEnabled(options.EnableDateTimeConversion),
m_pvV8ObjectCache(nullptr),
m_AllowHostObjectConstructorCall(false),
m_DisableHostObjectInterception(false)
m_AllowHostObjectConstructorCall(false)
{
VerifyNotOutOfMemory();
@ -789,7 +788,7 @@ void V8ContextImpl::GetV8ObjectPropertyIndices(void* pvObject, std::vector<int>&
//-----------------------------------------------------------------------------
V8Value V8ContextImpl::InvokeV8Object(void* pvObject, const std::vector<V8Value>& args, bool asConstructor)
V8Value V8ContextImpl::InvokeV8Object(void* pvObject, bool asConstructor, const std::vector<V8Value>& args)
{
BEGIN_CONTEXT_SCOPE
BEGIN_EXECUTION_SCOPE
@ -1120,11 +1119,6 @@ bool V8ContextImpl::CheckContextImplForHostObjectCallback(V8ContextImpl* pContex
return false;
}
if (pContextImpl->m_DisableHostObjectInterception)
{
return false;
}
if (pContextImpl->IsExecutionTerminating())
{
pContextImpl->ThrowException(pContextImpl->m_hTerminationException);
@ -1715,61 +1709,33 @@ void V8ContextImpl::GetHostObjectProperty(v8::Local<v8::Name> hKey, const v8::Pr
{
try
{
auto cacheCleared = false;
auto hAccessToken = FROM_MAYBE(hHolder->GetPrivate(pContextImpl->m_hContext, pContextImpl->m_hAccessTokenKey));
if (pContextImpl->m_hAccessToken != hAccessToken)
{
BEGIN_PULSE_VALUE_SCOPE(&pContextImpl->m_DisableHostObjectInterception, true)
auto hCache = ::ValueAsObject(FROM_MAYBE(hHolder->GetPrivate(pContextImpl->m_hContext, pContextImpl->m_hCacheKey)));
if (!hCache.IsEmpty())
{
auto hNames = FROM_MAYBE(hCache->GetOwnPropertyNames(pContextImpl->m_hContext));
for (auto index = hNames->Length(); index > 0; index--)
{
ASSERT_EVAL(FROM_MAYBE(hHolder->Delete(pContextImpl->m_hContext, FROM_MAYBE(hNames->Get(pContextImpl->m_hContext, index - 1)))));
}
ASSERT_EVAL(FROM_MAYBE(hHolder->DeletePrivate(pContextImpl->m_hContext, pContextImpl->m_hCacheKey)));
}
ASSERT_EVAL(FROM_MAYBE(hHolder->SetPrivate(pContextImpl->m_hContext, pContextImpl->m_hAccessTokenKey, pContextImpl->m_hAccessToken)));
cacheCleared = true;
END_PULSE_VALUE_SCOPE
ASSERT_EVAL(FROM_MAYBE(hHolder->DeletePrivate(pContextImpl->m_hContext, pContextImpl->m_hCacheKey)));
ASSERT_EVAL(FROM_MAYBE(hHolder->SetPrivate(pContextImpl->m_hContext, pContextImpl->m_hAccessTokenKey, pContextImpl->m_hAccessToken)));
}
v8::Local<v8::Value> hResult;
if (!cacheCleared)
else
{
BEGIN_PULSE_VALUE_SCOPE(&pContextImpl->m_DisableHostObjectInterception, true)
if (FROM_MAYBE(hHolder->HasOwnProperty(pContextImpl->m_hContext, hName)))
{
CALLBACK_RETURN(hResult);
}
END_PULSE_VALUE_SCOPE
auto hCache = ::ValueAsObject(FROM_MAYBE(hHolder->GetPrivate(pContextImpl->m_hContext, pContextImpl->m_hCacheKey)));
if (!hCache.IsEmpty() && FROM_MAYBE(hCache->HasOwnProperty(pContextImpl->m_hContext, hName)))
{
CALLBACK_RETURN(FROM_MAYBE(hCache->Get(pContextImpl->m_hContext, hName)));
}
}
bool isCacheable;
hResult = pContextImpl->ImportValue(HostObjectHelpers::GetProperty(pvObject, pContextImpl->CreateStdString(hName), isCacheable));
if (isCacheable)
auto hResult = pContextImpl->ImportValue(HostObjectHelpers::GetProperty(pvObject, pContextImpl->CreateStdString(hName), isCacheable));
if (isCacheable && !hResult.IsEmpty())
{
BEGIN_PULSE_VALUE_SCOPE(&pContextImpl->m_DisableHostObjectInterception, true)
auto hCache = ::ValueAsObject(FROM_MAYBE(hHolder->GetPrivate(pContextImpl->m_hContext, pContextImpl->m_hCacheKey)));
if (hCache.IsEmpty())
{
hCache = pContextImpl->CreateObject();
ASSERT_EVAL(FROM_MAYBE(hHolder->SetPrivate(pContextImpl->m_hContext, pContextImpl->m_hCacheKey, hCache)));
}
auto hCache = ::ValueAsObject(FROM_MAYBE(hHolder->GetPrivate(pContextImpl->m_hContext, pContextImpl->m_hCacheKey)));
if (hCache.IsEmpty())
{
hCache = pContextImpl->CreateObject();
ASSERT_EVAL(FROM_MAYBE(hHolder->SetPrivate(pContextImpl->m_hContext, pContextImpl->m_hCacheKey, hCache)));
}
ASSERT_EVAL(FROM_MAYBE(hCache->Set(pContextImpl->m_hContext, hName, hResult)));
ASSERT_EVAL(FROM_MAYBE(hHolder->DefineOwnProperty(pContextImpl->m_hContext, hName, hResult, v8::DontEnum)));
END_PULSE_VALUE_SCOPE
ASSERT_EVAL(FROM_MAYBE(hCache->Set(pContextImpl->m_hContext, hName, hResult)));
}
CALLBACK_RETURN(hResult);
@ -2071,7 +2037,7 @@ void V8ContextImpl::InvokeHostObject(const v8::FunctionCallbackInfo<v8::Value>&
exportedArgs.push_back(pContextImpl->ExportValue(info[index]));
}
CALLBACK_RETURN(pContextImpl->ImportValue(HostObjectHelpers::Invoke(pvObject, exportedArgs, info.IsConstructCall())));
CALLBACK_RETURN(pContextImpl->ImportValue(HostObjectHelpers::Invoke(pvObject, info.IsConstructCall(), exportedArgs)));
}
catch (const HostException& exception)
{
@ -2240,7 +2206,7 @@ V8Value V8ContextImpl::ExportValue(v8::Local<v8::Value> hValue)
if (hValue->IsBoolean())
{
return V8Value(FROM_MAYBE(hValue->BooleanValue(m_hContext)));
return V8Value(m_spIsolateImpl->BooleanValue(hValue));
}
if (hValue->IsNumber())

Просмотреть файл

@ -65,7 +65,7 @@ public:
bool DeleteV8ObjectProperty(void* pvObject, int index);
void GetV8ObjectPropertyIndices(void* pvObject, std::vector<int>& indices);
V8Value InvokeV8Object(void* pvObject, const std::vector<V8Value>& args, bool asConstructor);
V8Value InvokeV8Object(void* pvObject, bool asConstructor, const std::vector<V8Value>& args);
V8Value InvokeV8ObjectMethod(void* pvObject, const StdString& name, const std::vector<V8Value>& args);
void GetV8ObjectArrayBufferOrViewInfo(void* pvObject, V8Value& arrayBuffer, size_t& offset, size_t& size, size_t& length);
@ -269,12 +269,12 @@ private:
m_spIsolateImpl->LowMemoryNotification();
}
v8::Local<v8::StackFrame> GetStackFrame(v8::Local<v8::StackTrace> hStackTrace, uint32_t index)
{
return m_spIsolateImpl->GetStackFrame(hStackTrace, index);
}
v8::Local<v8::StackFrame> GetStackFrame(v8::Local<v8::StackTrace> hStackTrace, uint32_t index)
{
return m_spIsolateImpl->GetStackFrame(hStackTrace, index);
}
v8::Local<v8::String> GetTypeOf(v8::Local<v8::Value> hValue)
v8::Local<v8::String> GetTypeOf(v8::Local<v8::Value> hValue)
{
return m_spIsolateImpl->GetTypeOf(hValue);
}
@ -366,7 +366,6 @@ private:
SharedPtr<V8WeakContextBinding> m_spWeakBinding;
void* m_pvV8ObjectCache;
bool m_AllowHostObjectConstructorCall;
bool m_DisableHostObjectInterception;
};
//-----------------------------------------------------------------------------

Просмотреть файл

@ -149,6 +149,11 @@ public:
return v8::False(m_pIsolate);
}
bool BooleanValue(v8::Local<v8::Value> hValue)
{
return hValue->BooleanValue(m_pIsolate);
}
v8::Local<v8::Symbol> GetIteratorSymbol()
{
return v8::Symbol::GetIterator(m_pIsolate);

Просмотреть файл

@ -72,9 +72,9 @@ void V8ObjectHelpers::GetPropertyIndices(V8ObjectHolder* pHolder, std::vector<in
//-----------------------------------------------------------------------------
V8Value V8ObjectHelpers::Invoke(V8ObjectHolder* pHolder, const std::vector<V8Value>& args, bool asConstructor)
V8Value V8ObjectHelpers::Invoke(V8ObjectHolder* pHolder, bool asConstructor, const std::vector<V8Value>& args)
{
return GetHolderImpl(pHolder)->Invoke(args, asConstructor);
return GetHolderImpl(pHolder)->Invoke(asConstructor, args);
}
//-----------------------------------------------------------------------------

Просмотреть файл

@ -23,7 +23,7 @@ public:
static bool DeleteProperty(V8ObjectHolder* pHolder, int index);
static void GetPropertyIndices(V8ObjectHolder* pHolder, std::vector<int>& indices);
static V8Value Invoke(V8ObjectHolder* pHolder, const std::vector<V8Value>& args, bool asConstructor);
static V8Value Invoke(V8ObjectHolder* pHolder, bool asConstructor, const std::vector<V8Value>& args);
static V8Value InvokeMethod(V8ObjectHolder* pHolder, const StdString& name, const std::vector<V8Value>& args);
typedef void ArrayBufferOrViewDataCallbackT(void* pvData, void* pvArg);

Просмотреть файл

@ -85,9 +85,9 @@ void V8ObjectHolderImpl::GetPropertyIndices(std::vector<int>& indices) const
//-----------------------------------------------------------------------------
V8Value V8ObjectHolderImpl::Invoke(const std::vector<V8Value>& args, bool asConstructor) const
V8Value V8ObjectHolderImpl::Invoke(bool asConstructor, const std::vector<V8Value>& args) const
{
return m_spBinding->GetContextImpl()->InvokeV8Object(m_pvObject, args, asConstructor);
return m_spBinding->GetContextImpl()->InvokeV8Object(m_pvObject, asConstructor, args);
}
//-----------------------------------------------------------------------------

Просмотреть файл

@ -28,7 +28,7 @@ public:
bool DeleteProperty(int index) const;
void GetPropertyIndices(std::vector<int>& indices) const;
V8Value Invoke(const std::vector<V8Value>& args, bool asConstructor) const;
V8Value Invoke(bool asConstructor, const std::vector<V8Value>& args) const;
V8Value InvokeMethod(const StdString& name, const std::vector<V8Value>& args) const;
void GetArrayBufferOrViewInfo(V8Value& arrayBuffer, size_t& offset, size_t& size, size_t& length) const;

Просмотреть файл

@ -43,14 +43,6 @@ namespace V8 {
//-------------------------------------------------------------------------
Object^ V8ObjectImpl::GetProperty(String^ gcName, [Out] Boolean% isCacheable)
{
isCacheable = false;
return GetProperty(gcName);
}
//-------------------------------------------------------------------------
void V8ObjectImpl::SetProperty(String^ gcName, Object^ gcValue)
{
try
@ -169,14 +161,14 @@ namespace V8 {
//-------------------------------------------------------------------------
Object^ V8ObjectImpl::Invoke(array<Object^>^ gcArgs, bool asConstructor)
Object^ V8ObjectImpl::Invoke(bool asConstructor, array<Object^>^ gcArgs)
{
try
{
std::vector<V8Value> importedArgs;
ImportValues(gcArgs, importedArgs);
return V8ContextProxyImpl::ExportValue(V8ObjectHelpers::Invoke(GetHolder(), importedArgs, asConstructor));
return V8ContextProxyImpl::ExportValue(V8ObjectHelpers::Invoke(GetHolder(), asConstructor, importedArgs));
}
catch (const V8Exception& exception)
{

Просмотреть файл

@ -18,7 +18,6 @@ namespace V8 {
V8ObjectImpl(V8ObjectHolder* pHolder, V8Value::Subtype subtype);
virtual Object^ GetProperty(String^ gcName);
virtual Object^ GetProperty(String^ gcName, [Out] Boolean% isCacheable);
virtual void SetProperty(String^ gcName, Object^ gcValue);
virtual bool DeleteProperty(String^ gcName);
virtual array<String^>^ GetPropertyNames();
@ -28,7 +27,7 @@ namespace V8 {
virtual bool DeleteProperty(int index);
virtual array<int>^ GetPropertyIndices();
virtual Object^ Invoke(array<Object^>^ gcArgs, bool asConstructor);
virtual Object^ Invoke(bool asConstructor, array<Object^>^ gcArgs);
virtual Object^ InvokeMethod(String^ gcName, array<Object^>^ gcArgs);
virtual bool IsArrayBufferOrView();

Просмотреть файл

@ -9,8 +9,8 @@
#pragma warning(push, 3)
//#define V8_DEPRECATION_WARNINGS
#define V8_IMMINENT_DEPRECATION_WARNINGS
#define V8_DEPRECATION_WARNINGS
//#define V8_IMMINENT_DEPRECATION_WARNINGS
#include "v8.h"
#include "v8-platform.h"

Просмотреть файл

@ -8,7 +8,6 @@ namespace Microsoft.ClearScript.V8
internal interface IV8Object : IDisposable
{
object GetProperty(string name);
object GetProperty(string name, out bool isCacheable);
void SetProperty(string name, object value);
bool DeleteProperty(string name);
string[] GetPropertyNames();
@ -18,7 +17,7 @@ namespace Microsoft.ClearScript.V8
bool DeleteProperty(int index);
int[] GetPropertyIndices();
object Invoke(object[] args, bool asConstructor);
object Invoke(bool asConstructor, object[] args);
object InvokeMethod(string name, object[] args);
bool IsArrayBufferOrView();

Просмотреть файл

@ -1,9 +1,9 @@
diff --git a/BUILD.gn b/BUILD.gn
index 0b354468a6..2809799baf 100644
index 3c03942827..34fae38417 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -166,6 +166,12 @@ declare_args() {
v8_check_header_includes = false
@@ -194,6 +194,12 @@ if (host_cpu == "x64" &&
v8_generator_toolchain = "//build/toolchain/linux:clang_x64"
}
+if (v8_current_cpu == "x86") {
@ -15,15 +15,15 @@ index 0b354468a6..2809799baf 100644
# Derived defaults.
if (v8_enable_verify_heap == "") {
v8_enable_verify_heap = v8_enable_debugging_features
@@ -2957,6 +2963,7 @@ v8_source_set("torque_base") {
@@ -3153,6 +3159,7 @@ v8_source_set("torque_base") {
}
v8_component("v8_libbase") {
+ output_name = "v8-base-${clearscript_v8_platform}"
sources = [
"src/base/adapters.h",
"src/base/atomic-utils.h",
@@ -3132,6 +3139,7 @@ v8_component("v8_libbase") {
"src/base/address-region.h",
@@ -3343,6 +3350,7 @@ v8_component("v8_libbase") {
}
v8_component("v8_libplatform") {
@ -31,7 +31,7 @@ index 0b354468a6..2809799baf 100644
sources = [
"//base/trace_event/common/trace_event_common.h",
"include/libplatform/libplatform-export.h",
@@ -3355,6 +3363,7 @@ group("v8_fuzzers") {
@@ -3616,6 +3624,7 @@ group("v8_fuzzers") {
if (is_component_build) {
v8_component("v8") {
@ -40,10 +40,10 @@ index 0b354468a6..2809799baf 100644
"src/v8dll-main.cc",
]
diff --git a/include/v8.h b/include/v8.h
index a83305560c..f024cb3a4a 100644
index 03677d7af2..0d991b1588 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -1404,6 +1404,7 @@ class V8_EXPORT ScriptCompiler {
@@ -1275,6 +1275,7 @@ class V8_EXPORT ScriptCompiler {
// (with delete[]) when the CachedData object is destroyed.
CachedData(const uint8_t* data, int length,
BufferPolicy buffer_policy = BufferNotOwned);
@ -51,23 +51,11 @@ index a83305560c..f024cb3a4a 100644
~CachedData();
// TODO(marja): Async compilation; add constructors which take a callback
// which will be called when V8 no longer needs the data.
diff --git a/src/api-natives.cc b/src/api-natives.cc
index 977d6cdafc..97983f7e7b 100644
--- a/src/api-natives.cc
+++ b/src/api-natives.cc
@@ -731,6 +731,7 @@ Handle<JSFunction> ApiNatives::CreateApiFunction(
// Mark instance as callable in the map.
if (!obj->instance_call_handler()->IsUndefined(isolate)) {
map->set_is_callable(true);
+ map->set_is_constructor(true);
}
if (immutable_proto) map->set_is_immutable_proto(true);
diff --git a/src/api.cc b/src/api.cc
index 4eb31a447c..d37f4975bb 100644
index 1d993044db..1324eb4961 100644
--- a/src/api.cc
+++ b/src/api.cc
@@ -2017,6 +2017,11 @@ ScriptCompiler::CachedData::CachedData(const uint8_t* data_, int length_,
@@ -2011,6 +2011,11 @@ ScriptCompiler::CachedData::CachedData(const uint8_t* data_, int length_,
buffer_policy(buffer_policy_) {}
@ -80,10 +68,10 @@ index 4eb31a447c..d37f4975bb 100644
if (buffer_policy == BufferOwned) {
delete[] data;
diff --git a/src/code-stub-assembler.cc b/src/code-stub-assembler.cc
index 2527e89a25..04a9b3fb3c 100644
index 501dad9cea..73c352bb68 100644
--- a/src/code-stub-assembler.cc
+++ b/src/code-stub-assembler.cc
@@ -11547,6 +11547,11 @@ Node* CodeStubAssembler::Typeof(Node* value) {
@@ -12457,6 +12457,11 @@ Node* CodeStubAssembler::Typeof(Node* value) {
GotoIf(InstanceTypeEqual(instance_type, ODDBALL_TYPE), &if_oddball);
@ -96,10 +84,10 @@ index 2527e89a25..04a9b3fb3c 100644
LoadMapBitField(map),
Int32Constant(Map::IsCallableBit::kMask | Map::IsUndetectableBit::kMask));
diff --git a/src/objects.cc b/src/objects.cc
index 811656ad9a..97248e7d8a 100644
index e88a8a2c2d..9cd4d01de7 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -724,6 +724,12 @@ Handle<String> Object::TypeOf(Isolate* isolate, Handle<Object> object) {
@@ -746,6 +746,12 @@ Handle<String> Object::TypeOf(Isolate* isolate, Handle<Object> object) {
if (object->IsString()) return isolate->factory()->string_string();
if (object->IsSymbol()) return isolate->factory()->symbol_string();
if (object->IsBigInt()) return isolate->factory()->bigint_string();
@ -113,10 +101,10 @@ index 811656ad9a..97248e7d8a 100644
return isolate->factory()->object_string();
}
diff --git a/src/v8.cc b/src/v8.cc
index 4d152d4d4e..7f5bad931e 100644
index 98a807963c..4493d80780 100644
--- a/src/v8.cc
+++ b/src/v8.cc
@@ -96,7 +96,6 @@ void V8::InitializeOncePerProcess() {
@@ -104,7 +104,6 @@ void V8::InitializeOncePerProcess() {
void V8::InitializePlatform(v8::Platform* platform) {

Просмотреть файл

@ -69,7 +69,7 @@ namespace Microsoft.ClearScript.V8
public static object GetHostObjectProperty(object obj, string name, out bool isCacheable)
{
return ((IDynamic)obj).GetProperty(name, ArrayHelpers.GetEmptyArray<object>(), out isCacheable);
return ((IDynamic)obj).GetProperty(name, out isCacheable, ArrayHelpers.GetEmptyArray<object>());
}
public static unsafe void SetHostObjectProperty(void* pObject, string name, object value)
@ -79,7 +79,7 @@ namespace Microsoft.ClearScript.V8
public static void SetHostObjectProperty(object obj, string name, object value)
{
((IDynamic)obj).SetProperty(name, new[] { value });
((IDynamic)obj).SetProperty(name, value);
}
public static unsafe bool DeleteHostObjectProperty(void* pObject, string name)
@ -142,14 +142,14 @@ namespace Microsoft.ClearScript.V8
return ((IDynamic)obj).GetPropertyIndices();
}
public static unsafe object InvokeHostObject(void* pObject, object[] args, bool asConstructor)
public static unsafe object InvokeHostObject(void* pObject, bool asConstructor, object[] args)
{
return InvokeHostObject(GetHostObject(pObject), args, asConstructor);
return InvokeHostObject(GetHostObject(pObject), asConstructor, args);
}
public static object InvokeHostObject(object obj, object[] args, bool asConstructor)
public static object InvokeHostObject(object obj, bool asConstructor, object[] args)
{
return ((IDynamic)obj).Invoke(args, asConstructor);
return ((IDynamic)obj).Invoke(asConstructor, args);
}
public static unsafe object InvokeHostObjectMethod(void* pObject, string name, object[] args)

Просмотреть файл

@ -45,8 +45,8 @@ namespace Microsoft.ClearScript.V8
/// .NET <see cref="DateTime"/> objects and JavaScript
/// <see href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date">Date</see>
/// objects. This conversion is bidirectional. A <c>DateTime</c> object constructed from
/// JavaScript <c>Date</c> object always represents a Coordinated Universal Time (UTC) and
/// has its <see cref="DateTime.Kind"/> property set to <see cref="DateTimeKind.Utc"/>.
/// a JavaScript <c>Date</c> object always represents a Coordinated Universal Time (UTC)
/// and has its <see cref="DateTime.Kind"/> property set to <see cref="DateTimeKind.Utc"/>.
/// </summary>
EnableDateTimeConversion = 0x00000010
}

Просмотреть файл

@ -147,7 +147,7 @@ namespace Microsoft.ClearScript.V8
var invokeBinder = binder as InvokeBinder;
if (invokeBinder != null)
{
result = target.Invoke(args, false);
result = target.Invoke(false, args);
return true;
}
@ -183,11 +183,23 @@ namespace Microsoft.ClearScript.V8
return false;
}
public override string[] GetPropertyNames()
{
VerifyNotDisposed();
return engine.ScriptInvoke(() => target.GetPropertyNames());
}
public override int[] GetPropertyIndices()
{
VerifyNotDisposed();
return engine.ScriptInvoke(() => target.GetPropertyIndices());
}
#endregion
#region IDynamic implementation
#region ScriptObject overrides
public override object GetProperty(string name, object[] args)
public override object GetProperty(string name, params object[] args)
{
VerifyNotDisposed();
if ((args != null) && (args.Length != 0))
@ -206,7 +218,7 @@ namespace Microsoft.ClearScript.V8
return result;
}
public override void SetProperty(string name, object[] args)
public override void SetProperty(string name, params object[] args)
{
VerifyNotDisposed();
if ((args == null) || (args.Length != 1))
@ -223,12 +235,6 @@ namespace Microsoft.ClearScript.V8
return engine.ScriptInvoke(() => target.DeleteProperty(name));
}
public override string[] GetPropertyNames()
{
VerifyNotDisposed();
return engine.ScriptInvoke(() => target.GetPropertyNames());
}
public override object GetProperty(int index)
{
VerifyNotDisposed();
@ -247,25 +253,19 @@ namespace Microsoft.ClearScript.V8
return engine.ScriptInvoke(() => target.DeleteProperty(index));
}
public override int[] GetPropertyIndices()
{
VerifyNotDisposed();
return engine.ScriptInvoke(() => target.GetPropertyIndices());
}
public override object Invoke(object[] args, bool asConstructor)
public override object Invoke(bool asConstructor, params object[] args)
{
VerifyNotDisposed();
if (asConstructor || (holder == null))
{
return engine.MarshalToHost(engine.ScriptInvoke(() => target.Invoke(engine.MarshalToScript(args), asConstructor)), false);
return engine.MarshalToHost(engine.ScriptInvoke(() => target.Invoke(asConstructor, engine.MarshalToScript(args))), false);
}
return engine.Script.EngineInternal.invokeMethod(holder, this, args);
}
public override object InvokeMethod(string name, object[] args)
public override object InvokeMethod(string name, params object[] args)
{
VerifyNotDisposed();
return engine.MarshalToHost(engine.ScriptInvoke(() => target.InvokeMethod(name, engine.MarshalToScript(args))), false);

Просмотреть файл

@ -0,0 +1,14 @@
namespace Microsoft.ClearScript.Windows
{
/// <summary>
/// Represents a Windows Script object.
/// </summary>
public interface IWindowsScriptObject
{
/// <summary>
/// Provides access to the underlying unmanaged COM object.
/// </summary>
/// <returns>An object that represents the underlying unmanaged COM object.</returns>
object GetUnderlyingObject();
}
}

Просмотреть файл

@ -13,7 +13,7 @@ using Microsoft.ClearScript.Util;
namespace Microsoft.ClearScript.Windows
{
internal class WindowsScriptItem : ScriptItem, IDisposable
internal class WindowsScriptItem : ScriptItem, IWindowsScriptObject, IDisposable
{
private readonly WindowsScriptEngine engine;
private readonly IExpando target;
@ -178,11 +178,23 @@ namespace Microsoft.ClearScript.Windows
return ((engine is JScriptEngine) && (args.Length < 1)) ? new object[] { Undefined.Value } : args;
}
public override string[] GetPropertyNames()
{
VerifyNotDisposed();
return engine.ScriptInvoke(() => target.GetProperties(BindingFlags.Default).Select(property => property.Name).ExcludeIndices().ToArray());
}
public override int[] GetPropertyIndices()
{
VerifyNotDisposed();
return engine.ScriptInvoke(() => target.GetProperties(BindingFlags.Default).Select(property => property.Name).GetIndices().ToArray());
}
#endregion
#region IDynamic implementation
#region ScriptObject overrides
public override object GetProperty(string name, object[] args)
public override object GetProperty(string name, params object[] args)
{
VerifyNotDisposed();
@ -215,7 +227,7 @@ namespace Microsoft.ClearScript.Windows
return result;
}
public override void SetProperty(string name, object[] args)
public override void SetProperty(string name, params object[] args)
{
VerifyNotDisposed();
@ -288,12 +300,6 @@ namespace Microsoft.ClearScript.Windows
});
}
public override string[] GetPropertyNames()
{
VerifyNotDisposed();
return engine.ScriptInvoke(() => target.GetProperties(BindingFlags.Default).Select(property => property.Name).ExcludeIndices().ToArray());
}
public override object GetProperty(int index)
{
VerifyNotDisposed();
@ -303,7 +309,7 @@ namespace Microsoft.ClearScript.Windows
public override void SetProperty(int index, object value)
{
VerifyNotDisposed();
SetProperty(index.ToString(CultureInfo.InvariantCulture), new[] { value });
SetProperty(index.ToString(CultureInfo.InvariantCulture), value);
}
public override bool DeleteProperty(int index)
@ -312,13 +318,7 @@ namespace Microsoft.ClearScript.Windows
return DeleteProperty(index.ToString(CultureInfo.InvariantCulture));
}
public override int[] GetPropertyIndices()
{
VerifyNotDisposed();
return engine.ScriptInvoke(() => target.GetProperties(BindingFlags.Default).Select(property => property.Name).GetIndices().ToArray());
}
public override object Invoke(object[] args, bool asConstructor)
public override object Invoke(bool asConstructor, params object[] args)
{
VerifyNotDisposed();
@ -330,7 +330,7 @@ namespace Microsoft.ClearScript.Windows
return engine.Script.EngineInternal.invokeMethod(holder, this, args);
}
public override object InvokeMethod(string name, object[] args)
public override object InvokeMethod(string name, params object[] args)
{
VerifyNotDisposed();
@ -384,6 +384,18 @@ namespace Microsoft.ClearScript.Windows
#endregion
#region IWindowsScriptObject implementation
object IWindowsScriptObject.GetUnderlyingObject()
{
var pUnkTarget = Marshal.GetIUnknownForObject(target);
var clone = Marshal.GetObjectForIUnknown(pUnkTarget);
Marshal.Release(pUnkTarget);
return clone;
}
#endregion
#region IDisposable implementation
public void Dispose()

Двоичные данные
ClearScript/doc/Reference.chm

Двоичный файл не отображается.

Просмотреть файл

@ -11,5 +11,5 @@ using System.Runtime.InteropServices;
[assembly: AssemblyCopyright("(c) Microsoft Corporation")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("5.5.4.0")]
[assembly: AssemblyFileVersion("5.5.4.0")]
[assembly: AssemblyVersion("5.5.5.0")]
[assembly: AssemblyFileVersion("5.5.5.0")]

Просмотреть файл

@ -11,5 +11,5 @@ using System.Runtime.InteropServices;
[assembly: AssemblyCopyright("(c) Microsoft Corporation")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("5.5.4.0")]
[assembly: AssemblyFileVersion("5.5.4.0")]
[assembly: AssemblyVersion("5.5.5.0")]
[assembly: AssemblyFileVersion("5.5.5.0")]

Просмотреть файл

@ -10,6 +10,12 @@ using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Microsoft.ClearScript.Test
{
[TestClass]
[DeploymentItem("ClearScriptV8-64.dll")]
[DeploymentItem("ClearScriptV8-32.dll")]
[DeploymentItem("v8-x64.dll")]
[DeploymentItem("v8-ia32.dll")]
[DeploymentItem("v8-base-x64.dll")]
[DeploymentItem("v8-base-ia32.dll")]
[SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")]
public class AccessContextTest : ClearScriptTest
{

Просмотреть файл

@ -2369,13 +2369,35 @@ namespace Microsoft.ClearScript.Test
}
}
// ReSharper restore InconsistentNaming
[TestMethod, TestCategory("BugFix")]
public void BugFix_PropertyAccessorScriptability()
{
engine.Script.testObject = new PropertyAccessorScriptability();
engine.Execute("testObject.Foo = 123");
Assert.AreEqual(123, engine.Evaluate("testObject.Foo"));
#endregion
TestUtil.AssertException<UnauthorizedAccessException>(() => engine.Execute("testObject.Bar = 123"));
TestUtil.AssertException<UnauthorizedAccessException>(() => engine.Evaluate("testObject.Bar"));
}
#region miscellaneous
[TestMethod, TestCategory("BugFix")]
public void BugFix_PropertyAccessorScriptability_Static()
{
engine.AddHostType("TestObject", typeof(PropertyAccessorScriptabilityStatic));
engine.Execute("TestObject.Foo = 123");
Assert.AreEqual(123, engine.Evaluate("TestObject.Foo"));
private static void VariantClearTestHelper(object x)
TestUtil.AssertException<UnauthorizedAccessException>(() => engine.Execute("TestObject.Bar = 123"));
TestUtil.AssertException<UnauthorizedAccessException>(() => engine.Evaluate("TestObject.Bar"));
}
// ReSharper restore InconsistentNaming
#endregion
#region miscellaneous
private static void VariantClearTestHelper(object x)
{
using (var engine = new JScriptEngine())
{
@ -2528,7 +2550,27 @@ namespace Microsoft.ClearScript.Test
// ReSharper restore UnusedMember.Local
}
public class DynamicMethodArgTest : DynamicObject
[NoDefaultScriptAccess]
public class PropertyAccessorScriptability
{
[ScriptMember]
public int Foo { get; set; }
[ScriptMember]
public int Bar { [NoScriptAccess] get; [NoScriptAccess] set; }
}
[NoDefaultScriptAccess]
public static class PropertyAccessorScriptabilityStatic
{
[ScriptMember]
public static int Foo { get; set; }
[ScriptMember]
public static int Bar { [NoScriptAccess] get; [NoScriptAccess] set; }
}
public class DynamicMethodArgTest : DynamicObject
{
public override IEnumerable<string> GetDynamicMemberNames()
{

Просмотреть файл

@ -49,6 +49,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.VisualBasic" />
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>

Просмотреть файл

@ -11,11 +11,13 @@ using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Threading;
using System.Windows.Threading;
using Microsoft.CSharp.RuntimeBinder;
using Microsoft.ClearScript.Util;
using Microsoft.ClearScript.Windows;
using Microsoft.VisualBasic;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Microsoft.ClearScript.Test
@ -2270,13 +2272,67 @@ namespace Microsoft.ClearScript.Test
Assert.AreEqual("qux", engine.Evaluate("foo.baz"));
}
[TestMethod, TestCategory("JScriptEngine")]
public void JScriptEngine_UnderlyingObject()
{
engine.Execute("function Foo() {}; bar = new Foo();");
var bar = (IWindowsScriptObject)(((ScriptObject)engine.Script)["bar"]);
var underlyingObject = bar.GetUnderlyingObject();
Assert.AreEqual("JScriptTypeInfo", Information.TypeName(underlyingObject));
((IDisposable)bar).Dispose();
Assert.AreEqual(0, Marshal.ReleaseComObject(underlyingObject));
}
[TestMethod, TestCategory("JScriptEngine")]
public void JScriptEngine_ScriptObjectMembers()
{
engine.Execute(@"
function Foo() {
this.Qux = function (x) { this.Bar = x; };
this.Xuq = function () { return this.Baz; }
}
");
var foo = (ScriptObject)engine.Evaluate("new Foo");
foo.SetProperty("Bar", 123);
Assert.AreEqual(123, foo.GetProperty("Bar"));
foo["Baz"] = "abc";
Assert.AreEqual("abc", foo.GetProperty("Baz"));
foo.InvokeMethod("Qux", DayOfWeek.Wednesday);
Assert.AreEqual(DayOfWeek.Wednesday, foo.GetProperty("Bar"));
foo["Baz"] = BindingFlags.ExactBinding;
Assert.AreEqual(BindingFlags.ExactBinding, foo.InvokeMethod("Xuq"));
foo[1] = new HostFunctions();
Assert.IsInstanceOfType(foo[1], typeof(HostFunctions));
Assert.IsInstanceOfType(foo[2], typeof(Undefined));
var names = foo.PropertyNames.ToArray();
Assert.AreEqual(4, names.Length);
Assert.IsTrue(names.Contains("Bar"));
Assert.IsTrue(names.Contains("Baz"));
Assert.IsTrue(names.Contains("Qux"));
Assert.IsTrue(names.Contains("Xuq"));
var indices = foo.PropertyIndices.ToArray();
Assert.AreEqual(1, indices.Length);
Assert.IsTrue(indices.Contains(1));
}
// ReSharper restore InconsistentNaming
#endregion
#endregion
#region miscellaneous
#region miscellaneous
private const string generalScript =
private const string generalScript =
@"
System = clr.System;

Просмотреть файл

@ -11,5 +11,5 @@ using System.Runtime.InteropServices;
[assembly: AssemblyCopyright("(c) Microsoft Corporation")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("5.5.4.0")]
[assembly: AssemblyFileVersion("5.5.4.0")]
[assembly: AssemblyVersion("5.5.5.0")]
[assembly: AssemblyFileVersion("5.5.5.0")]

Просмотреть файл

@ -2923,13 +2923,53 @@ namespace Microsoft.ClearScript.Test
Assert.AreEqual("qux", engine.Evaluate("foo.baz"));
}
// ReSharper restore InconsistentNaming
[TestMethod, TestCategory("V8ScriptEngine")]
public void V8ScriptEngine_ScriptObjectMembers()
{
engine.Execute(@"
function Foo() {
this.Qux = x => this.Bar = x;
this.Xuq = () => this.Baz;
}
");
#endregion
var foo = (ScriptObject)engine.Evaluate("new Foo");
#region miscellaneous
foo.SetProperty("Bar", 123);
Assert.AreEqual(123, foo.GetProperty("Bar"));
private const string generalScript =
foo["Baz"] = "abc";
Assert.AreEqual("abc", foo.GetProperty("Baz"));
foo.InvokeMethod("Qux", DayOfWeek.Wednesday);
Assert.AreEqual(DayOfWeek.Wednesday, foo.GetProperty("Bar"));
foo["Baz"] = BindingFlags.ExactBinding;
Assert.AreEqual(BindingFlags.ExactBinding, foo.InvokeMethod("Xuq"));
foo[1] = new HostFunctions();
Assert.IsInstanceOfType(foo[1], typeof(HostFunctions));
Assert.IsInstanceOfType(foo[2], typeof(Undefined));
var names = foo.PropertyNames.ToArray();
Assert.AreEqual(4, names.Length);
Assert.IsTrue(names.Contains("Bar"));
Assert.IsTrue(names.Contains("Baz"));
Assert.IsTrue(names.Contains("Qux"));
Assert.IsTrue(names.Contains("Xuq"));
var indices = foo.PropertyIndices.ToArray();
Assert.AreEqual(1, indices.Length);
Assert.IsTrue(indices.Contains(1));
}
// ReSharper restore InconsistentNaming
#endregion
#region miscellaneous
private const string generalScript =
@"
System = clr.System;

Просмотреть файл

@ -11,11 +11,13 @@ using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Threading;
using System.Windows.Threading;
using Microsoft.CSharp.RuntimeBinder;
using Microsoft.ClearScript.Util;
using Microsoft.ClearScript.Windows;
using Microsoft.VisualBasic;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Microsoft.ClearScript.Test
@ -2440,13 +2442,81 @@ namespace Microsoft.ClearScript.Test
Assert.AreEqual("qux", engine.Evaluate("foo.baz"));
}
[TestMethod, TestCategory("VBScriptEngine")]
public void VBScriptEngine_UnderlyingObject()
{
engine.Execute("class Foo : end class : set bar = new Foo");
var bar = (IWindowsScriptObject)(((ScriptObject)engine.Script)["bar"]);
var underlyingObject = bar.GetUnderlyingObject();
Assert.AreEqual("Foo", Information.TypeName(underlyingObject));
((IDisposable)bar).Dispose();
Assert.AreEqual(0, Marshal.ReleaseComObject(underlyingObject));
}
[TestMethod, TestCategory("VBScriptEngine")]
public void VBScriptEngine_ScriptObjectMembers()
{
engine.Execute(@"
class Foo
public Bar
public Baz
private wix(10, 10, 10)
public sub Qux(x)
Bar = x
end sub
public function Xuq()
Xuq = Baz
end function
public property let Zip(a, b, c, d)
wix(a, b, c) = d
end property
public property get Zip(a, b, c)
Zip = wix(a, b, c)
end property
end class
");
var foo = (ScriptObject)engine.Evaluate("new Foo");
foo.SetProperty("Bar", 123);
Assert.AreEqual(123, foo.GetProperty("Bar"));
foo["Baz"] = "abc";
Assert.AreEqual("abc", foo.GetProperty("Baz"));
foo.InvokeMethod("Qux", DayOfWeek.Wednesday);
Assert.AreEqual(DayOfWeek.Wednesday, foo.GetProperty("Bar"));
foo["Baz"] = BindingFlags.ExactBinding;
Assert.AreEqual(BindingFlags.ExactBinding, foo.InvokeMethod("Xuq"));
foo["Zip", 1, 2, 3] = new HostFunctions();
Assert.IsInstanceOfType(foo["Zip", 1, 2, 3], typeof(HostFunctions));
Assert.IsInstanceOfType(foo["Zip", 1, 2, 4], typeof(Undefined));
var names = foo.PropertyNames.ToArray();
Assert.AreEqual(6, names.Length);
Assert.IsTrue(names.Contains("Bar"));
Assert.IsTrue(names.Contains("Baz"));
Assert.IsTrue(names.Contains("Qux"));
Assert.IsTrue(names.Contains("Xuq"));
Assert.IsTrue(names.Contains("Zip"));
Assert.IsTrue(names.Contains("wix"));
var indices = foo.PropertyIndices.ToArray();
Assert.AreEqual(0, indices.Length);
}
// ReSharper restore InconsistentNaming
#endregion
#endregion
#region miscellaneous
#region miscellaneous
public class ReflectionBindFallbackTest
public class ReflectionBindFallbackTest
{
public string Property { get { return "qux"; } }

Просмотреть файл

@ -5,7 +5,7 @@ setlocal
:: process arguments
::-----------------------------------------------------------------------------
set v8testedrev=7.0.276.42
set v8testedrev=7.2.502.25
:ProcessArgs

Просмотреть файл

@ -1 +1 @@
<# var version = new Version(5, 5, 4, 0); #>
<# var version = new Version(5, 5, 5, 0); #>

Просмотреть файл

@ -53,6 +53,7 @@
<HelpKINode Title="DefaultScriptUsageAttribute.DefaultScriptUsageAttribute constructor" Url="html/Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm" />
<HelpKINode Title="del(Of T) method" Url="html/M_Microsoft_ClearScript_HostFunctions_del__1.htm" />
<HelpKINode Title="del&lt;T&gt; method" Url="html/M_Microsoft_ClearScript_HostFunctions_del__1.htm" />
<HelpKINode Title="DeleteProperty method" Url="html/Overload_Microsoft_ClearScript_ScriptObject_DeleteProperty.htm" />
<HelpKINode Title="DirectAccess enumeration member" Url="html/T_Microsoft_ClearScript_HostItemFlags.htm" />
<HelpKINode Title="DisableGlobalMembers enumeration member" Url="html/T_Microsoft_ClearScript_V8_V8ScriptEngineFlags.htm" />
<HelpKINode Title="DisableListIndexTypeRestriction property" Url="html/P_Microsoft_ClearScript_ScriptEngine_DisableListIndexTypeRestriction.htm" />
@ -191,12 +192,14 @@
<HelpKINode Title="ScriptInterruptedException.GetObjectData Method " Url="html/M_Microsoft_ClearScript_ScriptInterruptedException_GetObjectData.htm" />
</HelpKINode>
<HelpKINode Title="getProperty method" Url="html/Overload_Microsoft_ClearScript_HostFunctions_getProperty.htm" />
<HelpKINode Title="GetProperty method" Url="html/Overload_Microsoft_ClearScript_ScriptObject_GetProperty.htm" />
<HelpKINode Title="GetRuntimeHeapInfo method" Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine_GetRuntimeHeapInfo.htm" />
<HelpKINode Title="GetStackTrace method">
<HelpKINode Title="ScriptEngine.GetStackTrace Method " Url="html/M_Microsoft_ClearScript_ScriptEngine_GetStackTrace.htm" />
<HelpKINode Title="V8ScriptEngine.GetStackTrace Method " Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine_GetStackTrace.htm" />
<HelpKINode Title="WindowsScriptEngine.GetStackTrace Method " Url="html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_GetStackTrace.htm" />
</HelpKINode>
<HelpKINode Title="GetUnderlyingObject method" Url="html/M_Microsoft_ClearScript_Windows_IWindowsScriptObject_GetUnderlyingObject.htm" />
<HelpKINode Title="GlobalMembers enumeration member" Url="html/T_Microsoft_ClearScript_HostItemFlags.htm" />
<HelpKINode Title="HeapSizeLimit property" Url="html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_HeapSizeLimit.htm" />
<HelpKINode Title="HeapSizeSampleInterval property" Url="html/P_Microsoft_ClearScript_V8_V8Runtime_HeapSizeSampleInterval.htm" />
@ -305,7 +308,11 @@
<HelpKINode Title="V8ScriptEngine.Interrupt Method " Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Interrupt.htm" />
<HelpKINode Title="WindowsScriptEngine.Interrupt Method " Url="html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_Interrupt.htm" />
</HelpKINode>
<HelpKINode Title="Invoke method" Url="html/M_Microsoft_ClearScript_ScriptEngine_Invoke.htm" />
<HelpKINode Title="Invoke method">
<HelpKINode Title="ScriptEngine.Invoke Method " Url="html/M_Microsoft_ClearScript_ScriptEngine_Invoke.htm" />
<HelpKINode Title="ScriptObject.Invoke Method " Url="html/M_Microsoft_ClearScript_ScriptObject_Invoke.htm" />
</HelpKINode>
<HelpKINode Title="InvokeMethod method" Url="html/M_Microsoft_ClearScript_ScriptObject_InvokeMethod.htm" />
<HelpKINode Title="IPropertyBag interface">
<HelpKINode Title="IPropertyBag Interface" Url="html/T_Microsoft_ClearScript_IPropertyBag.htm" />
<HelpKINode Title="methods" Url="html/Methods_T_Microsoft_ClearScript_IPropertyBag.htm" />
@ -338,7 +345,10 @@
<HelpKINode Title="isType(Of T) method" Url="html/M_Microsoft_ClearScript_HostFunctions_isType__1.htm" />
<HelpKINode Title="isType&lt;T&gt; method" Url="html/M_Microsoft_ClearScript_HostFunctions_isType__1.htm" />
<HelpKINode Title="isTypeObj method" Url="html/Overload_Microsoft_ClearScript_HostFunctions_isTypeObj.htm" />
<HelpKINode Title="Item property" Url="html/P_Microsoft_ClearScript_PropertyBag_Item.htm" />
<HelpKINode Title="Item property">
<HelpKINode Title="PropertyBag.Item Property " Url="html/P_Microsoft_ClearScript_PropertyBag_Item.htm" />
<HelpKINode Title="ScriptObject.Item Property " Url="html/Overload_Microsoft_ClearScript_ScriptObject_Item.htm" />
</HelpKINode>
<HelpKINode Title="ITypedArray interface">
<HelpKINode Title="ITypedArray Interface" Url="html/T_Microsoft_ClearScript_JavaScript_ITypedArray.htm" />
<HelpKINode Title="methods" Url="html/Methods_T_Microsoft_ClearScript_JavaScript_ITypedArray.htm" />
@ -361,6 +371,11 @@
<HelpKINode Title="ITypedArray&lt;T&gt;.Read method" Url="html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Read.htm" />
<HelpKINode Title="ITypedArray&lt;T&gt;.ToArray method" Url="html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_ToArray.htm" />
<HelpKINode Title="ITypedArray&lt;T&gt;.Write method" Url="html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Write.htm" />
<HelpKINode Title="IWindowsScriptObject interface">
<HelpKINode Title="IWindowsScriptObject Interface" Url="html/T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm" />
<HelpKINode Title="methods" Url="html/Methods_T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm" />
</HelpKINode>
<HelpKINode Title="IWindowsScriptObject.GetUnderlyingObject method" Url="html/M_Microsoft_ClearScript_Windows_IWindowsScriptObject_GetUnderlyingObject.htm" />
<HelpKINode Title="JScriptEngine class">
<HelpKINode Title="JScriptEngine Class" Url="html/T_Microsoft_ClearScript_Windows_JScriptEngine.htm" />
<HelpKINode Title="constructor" Url="html/Overload_Microsoft_ClearScript_Windows_JScriptEngine__ctor.htm" />
@ -433,6 +448,7 @@
<HelpKINode Title="Microsoft.ClearScript.VoidResult class" Url="html/T_Microsoft_ClearScript_VoidResult.htm" />
<HelpKINode Title="Microsoft.ClearScript.Windows namespace" Url="html/N_Microsoft_ClearScript_Windows.htm" />
<HelpKINode Title="Microsoft.ClearScript.Windows.IHostWindow interface" Url="html/T_Microsoft_ClearScript_Windows_IHostWindow.htm" />
<HelpKINode Title="Microsoft.ClearScript.Windows.IWindowsScriptObject interface" Url="html/T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm" />
<HelpKINode Title="Microsoft.ClearScript.Windows.JScriptEngine class" Url="html/T_Microsoft_ClearScript_Windows_JScriptEngine.htm" />
<HelpKINode Title="Microsoft.ClearScript.Windows.VBScriptEngine class" Url="html/T_Microsoft_ClearScript_Windows_VBScriptEngine.htm" />
<HelpKINode Title="Microsoft.ClearScript.Windows.WindowsScriptEngine class" Url="html/T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm" />
@ -499,6 +515,8 @@
<HelpKINode Title="PropertyBag.TryGetValue method" Url="html/M_Microsoft_ClearScript_PropertyBag_TryGetValue.htm" />
<HelpKINode Title="PropertyBag.Values property" Url="html/P_Microsoft_ClearScript_PropertyBag_Values.htm" />
<HelpKINode Title="PropertyChanged event" Url="html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm" />
<HelpKINode Title="PropertyIndices property" Url="html/P_Microsoft_ClearScript_ScriptObject_PropertyIndices.htm" />
<HelpKINode Title="PropertyNames property" Url="html/P_Microsoft_ClearScript_ScriptObject_PropertyNames.htm" />
<HelpKINode Title="Read method" Url="html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Read.htm" />
<HelpKINode Title="ReadBytes method">
<HelpKINode Title="IArrayBuffer.ReadBytes Method " Url="html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_ReadBytes.htm" />
@ -602,7 +620,15 @@
<HelpKINode Title="methods" Url="html/Methods_T_Microsoft_ClearScript_ScriptObject.htm" />
<HelpKINode Title="properties" Url="html/Properties_T_Microsoft_ClearScript_ScriptObject.htm" />
</HelpKINode>
<HelpKINode Title="ScriptObject.DeleteProperty method" Url="html/Overload_Microsoft_ClearScript_ScriptObject_DeleteProperty.htm" />
<HelpKINode Title="ScriptObject.Engine property" Url="html/P_Microsoft_ClearScript_ScriptObject_Engine.htm" />
<HelpKINode Title="ScriptObject.GetProperty method" Url="html/Overload_Microsoft_ClearScript_ScriptObject_GetProperty.htm" />
<HelpKINode Title="ScriptObject.Invoke method" Url="html/M_Microsoft_ClearScript_ScriptObject_Invoke.htm" />
<HelpKINode Title="ScriptObject.InvokeMethod method" Url="html/M_Microsoft_ClearScript_ScriptObject_InvokeMethod.htm" />
<HelpKINode Title="ScriptObject.Item property" Url="html/Overload_Microsoft_ClearScript_ScriptObject_Item.htm" />
<HelpKINode Title="ScriptObject.PropertyIndices property" Url="html/P_Microsoft_ClearScript_ScriptObject_PropertyIndices.htm" />
<HelpKINode Title="ScriptObject.PropertyNames property" Url="html/P_Microsoft_ClearScript_ScriptObject_PropertyNames.htm" />
<HelpKINode Title="ScriptObject.SetProperty method" Url="html/Overload_Microsoft_ClearScript_ScriptObject_SetProperty.htm" />
<HelpKINode Title="ScriptUsageAttribute class">
<HelpKINode Title="ScriptUsageAttribute Class" Url="html/T_Microsoft_ClearScript_ScriptUsageAttribute.htm" />
<HelpKINode Title="constructor" Url="html/Overload_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm" />
@ -612,6 +638,7 @@
<HelpKINode Title="ScriptUsageAttribute.Access property" Url="html/P_Microsoft_ClearScript_ScriptUsageAttribute_Access.htm" />
<HelpKINode Title="ScriptUsageAttribute.ScriptUsageAttribute constructor" Url="html/Overload_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm" />
<HelpKINode Title="setElement method" Url="html/M_Microsoft_ClearScript_HostFunctions_setElement.htm" />
<HelpKINode Title="SetProperty method" Url="html/Overload_Microsoft_ClearScript_ScriptObject_SetProperty.htm" />
<HelpKINode Title="setProperty method" Url="html/Overload_Microsoft_ClearScript_HostFunctions_setProperty.htm" />
<HelpKINode Title="SetPropertyNoCheck method" Url="html/M_Microsoft_ClearScript_PropertyBag_SetPropertyNoCheck.htm" />
<HelpKINode Title="Size property">

Просмотреть файл

@ -1,26 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<HelpTOC>
<HelpTOCNode Id="f9843c42-c052-463e-88b9-99d8496c5131" Title="ClearScript Library Reference" Url="html/R_Project_Reference.htm">
<HelpTOCNode Id="832e3824-923d-4b01-9d49-e6cb93f42da1" Title="Microsoft.ClearScript" Url="html/N_Microsoft_ClearScript.htm">
<HelpTOCNode Id="b0bacd6a-d4ba-47e5-8c15-3b54fe4510e1" Title="ClearScript Library Reference" Url="html/R_Project_Reference.htm">
<HelpTOCNode Id="f24b7ecd-46a1-41b2-8b02-00e661e00d91" Title="Microsoft.ClearScript" Url="html/N_Microsoft_ClearScript.htm">
<HelpTOCNode Title="ContinuationCallback Delegate" Url="html/T_Microsoft_ClearScript_ContinuationCallback.htm" />
<HelpTOCNode Id="deecbf17-387e-44bf-81e7-5d6dbb165c65" Title="DefaultScriptUsageAttribute Class" Url="html/T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm">
<HelpTOCNode Id="2d9fb871-3966-4e46-a4d7-60f6954f720c" Title="DefaultScriptUsageAttribute Constructor " Url="html/Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm">
<HelpTOCNode Id="cf3d0ae8-4c99-4ac3-a5c4-d3b074e888ed" Title="DefaultScriptUsageAttribute Class" Url="html/T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm">
<HelpTOCNode Id="3cb83d36-13b0-4e66-937a-a34b9ecfff2a" Title="DefaultScriptUsageAttribute Constructor " Url="html/Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm">
<HelpTOCNode Title="DefaultScriptUsageAttribute Constructor " Url="html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm" />
<HelpTOCNode Title="DefaultScriptUsageAttribute Constructor (ScriptAccess)" Url="html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1.htm" />
</HelpTOCNode>
<HelpTOCNode Id="fd6a27c3-7461-4705-a34e-687975a413a3" Title="DefaultScriptUsageAttribute Properties" Url="html/Properties_T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm">
<HelpTOCNode Id="115d46fa-4ed3-4ae3-a377-7b8f4f5f832e" Title="DefaultScriptUsageAttribute Properties" Url="html/Properties_T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm">
<HelpTOCNode Title="Access Property " Url="html/P_Microsoft_ClearScript_DefaultScriptUsageAttribute_Access.htm" />
</HelpTOCNode>
<HelpTOCNode Title="DefaultScriptUsageAttribute Methods" Url="html/Methods_T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm" />
</HelpTOCNode>
<HelpTOCNode Title="DocumentFlags Enumeration" Url="html/T_Microsoft_ClearScript_DocumentFlags.htm" />
<HelpTOCNode Id="3f6bd7c0-673c-464a-972c-6d6f13e52392" Title="DocumentInfo Structure" Url="html/T_Microsoft_ClearScript_DocumentInfo.htm">
<HelpTOCNode Id="6b605121-6f0d-4aef-8e87-adacc0d9c7e3" Title="DocumentInfo Constructor " Url="html/Overload_Microsoft_ClearScript_DocumentInfo__ctor.htm">
<HelpTOCNode Id="7416ec47-820a-48e1-b80b-c5969dc15cf1" Title="DocumentInfo Structure" Url="html/T_Microsoft_ClearScript_DocumentInfo.htm">
<HelpTOCNode Id="6b0549d5-4adf-42e2-ad45-a6f2118d876a" Title="DocumentInfo Constructor " Url="html/Overload_Microsoft_ClearScript_DocumentInfo__ctor.htm">
<HelpTOCNode Title="DocumentInfo Constructor (String)" Url="html/M_Microsoft_ClearScript_DocumentInfo__ctor.htm" />
<HelpTOCNode Title="DocumentInfo Constructor (Uri)" Url="html/M_Microsoft_ClearScript_DocumentInfo__ctor_1.htm" />
</HelpTOCNode>
<HelpTOCNode Id="a71c62bd-a1a0-4c32-8211-846c81d4a2cc" Title="DocumentInfo Properties" Url="html/Properties_T_Microsoft_ClearScript_DocumentInfo.htm">
<HelpTOCNode Id="823d0f33-1538-4d22-add2-b05303e27e8b" Title="DocumentInfo Properties" Url="html/Properties_T_Microsoft_ClearScript_DocumentInfo.htm">
<HelpTOCNode Title="Flags Property " Url="html/P_Microsoft_ClearScript_DocumentInfo_Flags.htm" />
<HelpTOCNode Title="Name Property " Url="html/P_Microsoft_ClearScript_DocumentInfo_Name.htm" />
<HelpTOCNode Title="SourceMapUri Property " Url="html/P_Microsoft_ClearScript_DocumentInfo_SourceMapUri.htm" />
@ -28,60 +28,60 @@
</HelpTOCNode>
<HelpTOCNode Title="DocumentInfo Methods" Url="html/Methods_T_Microsoft_ClearScript_DocumentInfo.htm" />
</HelpTOCNode>
<HelpTOCNode Id="810cd5c3-48eb-4539-9d74-46ed0154ce60" Title="EventConnection(T) Class" Url="html/T_Microsoft_ClearScript_EventConnection_1.htm">
<HelpTOCNode Id="70318147-d774-4acb-a2d6-664722c4b9ae" Title="EventConnection(T) Methods" Url="html/Methods_T_Microsoft_ClearScript_EventConnection_1.htm">
<HelpTOCNode Id="14680b6b-035f-471b-b2fa-654d77da455f" Title="EventConnection(T) Class" Url="html/T_Microsoft_ClearScript_EventConnection_1.htm">
<HelpTOCNode Id="5a93fe25-6599-48fb-b6e5-f728b9810f5a" Title="EventConnection(T) Methods" Url="html/Methods_T_Microsoft_ClearScript_EventConnection_1.htm">
<HelpTOCNode Title="disconnect Method " Url="html/M_Microsoft_ClearScript_EventConnection_1_disconnect.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="00df02dc-6cb0-4cfc-b8a1-8ce2e17d4213" Title="EventSource(T) Class" Url="html/T_Microsoft_ClearScript_EventSource_1.htm">
<HelpTOCNode Id="945973f6-1383-453b-b629-deb53d5a012e" Title="EventSource(T) Methods" Url="html/Methods_T_Microsoft_ClearScript_EventSource_1.htm">
<HelpTOCNode Id="d2bff29c-80ba-439c-a585-49ee33b4238f" Title="EventSource(T) Class" Url="html/T_Microsoft_ClearScript_EventSource_1.htm">
<HelpTOCNode Id="2cfa4daf-9ea0-41d7-8587-0ce954bb8ea3" Title="EventSource(T) Methods" Url="html/Methods_T_Microsoft_ClearScript_EventSource_1.htm">
<HelpTOCNode Title="connect Method " Url="html/M_Microsoft_ClearScript_EventSource_1_connect.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="e9a6df3e-6723-49f9-a4c9-845f6024eb1c" Title="ExtendedHostFunctions Class" Url="html/T_Microsoft_ClearScript_ExtendedHostFunctions.htm">
<HelpTOCNode Id="7a118a71-d74f-40a7-9bca-29e384d86cc4" Title="ExtendedHostFunctions Class" Url="html/T_Microsoft_ClearScript_ExtendedHostFunctions.htm">
<HelpTOCNode Title="ExtendedHostFunctions Constructor " Url="html/M_Microsoft_ClearScript_ExtendedHostFunctions__ctor.htm" />
<HelpTOCNode Id="6f9f35e2-5e91-4cad-8017-ec0f453879c4" Title="ExtendedHostFunctions Methods" Url="html/Methods_T_Microsoft_ClearScript_ExtendedHostFunctions.htm">
<HelpTOCNode Id="f91dbe0a-4cb9-4cd0-833e-903f266995b7" Title="ExtendedHostFunctions Methods" Url="html/Methods_T_Microsoft_ClearScript_ExtendedHostFunctions.htm">
<HelpTOCNode Title="arrType(T) Method " Url="html/M_Microsoft_ClearScript_ExtendedHostFunctions_arrType__1.htm" />
<HelpTOCNode Title="comType Method " Url="html/M_Microsoft_ClearScript_ExtendedHostFunctions_comType.htm" />
<HelpTOCNode Id="a8c8a8d9-75a2-488a-a635-1dbb4bba8004" Title="lib Method " Url="html/Overload_Microsoft_ClearScript_ExtendedHostFunctions_lib.htm">
<HelpTOCNode Id="fac9d3f5-d55f-430b-90f0-f52efee52bcd" Title="lib Method " Url="html/Overload_Microsoft_ClearScript_ExtendedHostFunctions_lib.htm">
<HelpTOCNode Title="lib Method (String[])" Url="html/M_Microsoft_ClearScript_ExtendedHostFunctions_lib_1.htm" />
<HelpTOCNode Title="lib Method (HostTypeCollection, String[])" Url="html/M_Microsoft_ClearScript_ExtendedHostFunctions_lib.htm" />
</HelpTOCNode>
<HelpTOCNode Title="newComObj Method " Url="html/M_Microsoft_ClearScript_ExtendedHostFunctions_newComObj.htm" />
<HelpTOCNode Id="78171891-b3a5-4407-b405-05c25184abca" Title="type Method " Url="html/Overload_Microsoft_ClearScript_ExtendedHostFunctions_type.htm">
<HelpTOCNode Id="961af253-1fa0-4432-9a4f-5d017f3d1201" Title="type Method " Url="html/Overload_Microsoft_ClearScript_ExtendedHostFunctions_type.htm">
<HelpTOCNode Title="type Method (Type)" Url="html/M_Microsoft_ClearScript_ExtendedHostFunctions_type_2.htm" />
<HelpTOCNode Title="type Method (String, Object[])" Url="html/M_Microsoft_ClearScript_ExtendedHostFunctions_type.htm" />
<HelpTOCNode Title="type Method (String, String, Object[])" Url="html/M_Microsoft_ClearScript_ExtendedHostFunctions_type_1.htm" />
</HelpTOCNode>
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="8a8c4f33-7474-4809-8c3c-6b8171ee5006" Title="HostFunctions Class" Url="html/T_Microsoft_ClearScript_HostFunctions.htm">
<HelpTOCNode Id="15f7875c-d8b9-4c21-9133-d55f43520825" Title="HostFunctions Class" Url="html/T_Microsoft_ClearScript_HostFunctions.htm">
<HelpTOCNode Title="HostFunctions Constructor " Url="html/M_Microsoft_ClearScript_HostFunctions__ctor.htm" />
<HelpTOCNode Id="8a294079-6af6-49ee-a776-fd260668cb88" Title="HostFunctions Methods" Url="html/Methods_T_Microsoft_ClearScript_HostFunctions.htm">
<HelpTOCNode Id="9b0e1539-c864-46ed-a232-135cf8333977" Title="HostFunctions Methods" Url="html/Methods_T_Microsoft_ClearScript_HostFunctions.htm">
<HelpTOCNode Title="asType(T) Method " Url="html/M_Microsoft_ClearScript_HostFunctions_asType__1.htm" />
<HelpTOCNode Title="cast(T) Method " Url="html/M_Microsoft_ClearScript_HostFunctions_cast__1.htm" />
<HelpTOCNode Title="del(T) Method " Url="html/M_Microsoft_ClearScript_HostFunctions_del__1.htm" />
<HelpTOCNode Title="flags(T) Method " Url="html/M_Microsoft_ClearScript_HostFunctions_flags__1.htm" />
<HelpTOCNode Id="e16f8d2d-a35e-44b9-a787-c1f638e58eca" Title="func Method " Url="html/Overload_Microsoft_ClearScript_HostFunctions_func.htm">
<HelpTOCNode Id="933e1c03-8cb3-4f4c-ba98-be0ead224dce" Title="func Method " Url="html/Overload_Microsoft_ClearScript_HostFunctions_func.htm">
<HelpTOCNode Title="func(T) Method (Int32, Object)" Url="html/M_Microsoft_ClearScript_HostFunctions_func__1.htm" />
<HelpTOCNode Title="func Method (Int32, Object)" Url="html/M_Microsoft_ClearScript_HostFunctions_func.htm" />
</HelpTOCNode>
<HelpTOCNode Title="getElement Method " Url="html/M_Microsoft_ClearScript_HostFunctions_getElement.htm" />
<HelpTOCNode Id="67f90ae6-ca51-4eeb-a754-01f43372ad4f" Title="getProperty Method " Url="html/Overload_Microsoft_ClearScript_HostFunctions_getProperty.htm">
<HelpTOCNode Id="d803a685-7354-48bd-bdf7-ff6411ad3e50" Title="getProperty Method " Url="html/Overload_Microsoft_ClearScript_HostFunctions_getProperty.htm">
<HelpTOCNode Title="getProperty Method (IDynamicMetaObjectProvider, String)" Url="html/M_Microsoft_ClearScript_HostFunctions_getProperty_1.htm" />
<HelpTOCNode Title="getProperty Method (IPropertyBag, String)" Url="html/M_Microsoft_ClearScript_HostFunctions_getProperty.htm" />
</HelpTOCNode>
<HelpTOCNode Title="isNull Method " Url="html/M_Microsoft_ClearScript_HostFunctions_isNull.htm" />
<HelpTOCNode Title="isType(T) Method " Url="html/M_Microsoft_ClearScript_HostFunctions_isType__1.htm" />
<HelpTOCNode Id="16f3e179-872f-41b7-8c74-c415a6008b43" Title="isTypeObj Method " Url="html/Overload_Microsoft_ClearScript_HostFunctions_isTypeObj.htm">
<HelpTOCNode Id="de488f42-f53d-45b3-bd50-0394014703e5" Title="isTypeObj Method " Url="html/Overload_Microsoft_ClearScript_HostFunctions_isTypeObj.htm">
<HelpTOCNode Title="isTypeObj(T) Method " Url="html/M_Microsoft_ClearScript_HostFunctions_isTypeObj__1.htm" />
<HelpTOCNode Title="isTypeObj Method (Object)" Url="html/M_Microsoft_ClearScript_HostFunctions_isTypeObj.htm" />
</HelpTOCNode>
<HelpTOCNode Id="879ef01b-03a5-4975-8eb4-8f7f8ee520d2" Title="newArr Method " Url="html/Overload_Microsoft_ClearScript_HostFunctions_newArr.htm">
<HelpTOCNode Id="0a799699-3913-4a1d-99e8-8b4955ad1178" Title="newArr Method " Url="html/Overload_Microsoft_ClearScript_HostFunctions_newArr.htm">
<HelpTOCNode Title="newArr(T) Method (Int32[])" Url="html/M_Microsoft_ClearScript_HostFunctions_newArr__1.htm" />
<HelpTOCNode Title="newArr Method (Int32[])" Url="html/M_Microsoft_ClearScript_HostFunctions_newArr.htm" />
</HelpTOCNode>
<HelpTOCNode Id="8703093b-1e5d-4480-86ca-3605570db517" Title="newObj Method " Url="html/Overload_Microsoft_ClearScript_HostFunctions_newObj.htm">
<HelpTOCNode Id="c62c7ad2-4e88-49b2-aebb-9469035642b3" Title="newObj Method " Url="html/Overload_Microsoft_ClearScript_HostFunctions_newObj.htm">
<HelpTOCNode Title="newObj Method " Url="html/M_Microsoft_ClearScript_HostFunctions_newObj.htm" />
<HelpTOCNode Title="newObj(T) Method (Object[])" Url="html/M_Microsoft_ClearScript_HostFunctions_newObj__1.htm" />
<HelpTOCNode Title="newObj Method (IDynamicMetaObjectProvider, Object[])" Url="html/M_Microsoft_ClearScript_HostFunctions_newObj_1.htm" />
@ -90,12 +90,12 @@
<HelpTOCNode Title="newVar(T) Method " Url="html/M_Microsoft_ClearScript_HostFunctions_newVar__1.htm" />
<HelpTOCNode Title="proc Method " Url="html/M_Microsoft_ClearScript_HostFunctions_proc.htm" />
<HelpTOCNode Title="removeElement Method " Url="html/M_Microsoft_ClearScript_HostFunctions_removeElement.htm" />
<HelpTOCNode Id="0b5591dd-8db2-4689-a37e-5c6c9a4cb16e" Title="removeProperty Method " Url="html/Overload_Microsoft_ClearScript_HostFunctions_removeProperty.htm">
<HelpTOCNode Id="2f5eb8db-aba1-4408-89c5-c61cb9b85690" Title="removeProperty Method " Url="html/Overload_Microsoft_ClearScript_HostFunctions_removeProperty.htm">
<HelpTOCNode Title="removeProperty Method (IDynamicMetaObjectProvider, String)" Url="html/M_Microsoft_ClearScript_HostFunctions_removeProperty_1.htm" />
<HelpTOCNode Title="removeProperty Method (IPropertyBag, String)" Url="html/M_Microsoft_ClearScript_HostFunctions_removeProperty.htm" />
</HelpTOCNode>
<HelpTOCNode Title="setElement Method " Url="html/M_Microsoft_ClearScript_HostFunctions_setElement.htm" />
<HelpTOCNode Id="8d7766b9-3870-46c4-9c00-ee2e2d857362" Title="setProperty Method " Url="html/Overload_Microsoft_ClearScript_HostFunctions_setProperty.htm">
<HelpTOCNode Id="c11ad4d7-1df3-425a-ac5e-7665a210fb8c" Title="setProperty Method " Url="html/Overload_Microsoft_ClearScript_HostFunctions_setProperty.htm">
<HelpTOCNode Title="setProperty Method (IDynamicMetaObjectProvider, String, Object)" Url="html/M_Microsoft_ClearScript_HostFunctions_setProperty_1.htm" />
<HelpTOCNode Title="setProperty Method (IPropertyBag, String, Object)" Url="html/M_Microsoft_ClearScript_HostFunctions_setProperty.htm" />
</HelpTOCNode>
@ -113,15 +113,15 @@
<HelpTOCNode Title="toUInt32 Method " Url="html/M_Microsoft_ClearScript_HostFunctions_toUInt32.htm" />
<HelpTOCNode Title="toUInt64 Method " Url="html/M_Microsoft_ClearScript_HostFunctions_toUInt64.htm" />
<HelpTOCNode Title="tryCatch Method " Url="html/M_Microsoft_ClearScript_HostFunctions_tryCatch.htm" />
<HelpTOCNode Id="fc7bfcf1-bbb5-4af1-95d0-f2822ce98f2d" Title="typeOf Method " Url="html/Overload_Microsoft_ClearScript_HostFunctions_typeOf.htm">
<HelpTOCNode Id="94eff5ed-dd59-4e1f-9cf5-67c09e738585" Title="typeOf Method " Url="html/Overload_Microsoft_ClearScript_HostFunctions_typeOf.htm">
<HelpTOCNode Title="typeOf(T) Method " Url="html/M_Microsoft_ClearScript_HostFunctions_typeOf__1.htm" />
<HelpTOCNode Title="typeOf Method (Object)" Url="html/M_Microsoft_ClearScript_HostFunctions_typeOf.htm" />
</HelpTOCNode>
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Title="HostItemFlags Enumeration" Url="html/T_Microsoft_ClearScript_HostItemFlags.htm" />
<HelpTOCNode Id="f4d14592-921f-499f-b710-ed76b2a8519c" Title="HostTypeCollection Class" Url="html/T_Microsoft_ClearScript_HostTypeCollection.htm">
<HelpTOCNode Id="49ca6faa-37cc-480a-b0cd-b5ba3620baa5" Title="HostTypeCollection Constructor " Url="html/Overload_Microsoft_ClearScript_HostTypeCollection__ctor.htm">
<HelpTOCNode Id="249e061c-3e9e-48e8-a2de-a38ae3d711ce" Title="HostTypeCollection Class" Url="html/T_Microsoft_ClearScript_HostTypeCollection.htm">
<HelpTOCNode Id="9987a581-1e76-4400-9346-baecaae1bcdc" Title="HostTypeCollection Constructor " Url="html/Overload_Microsoft_ClearScript_HostTypeCollection__ctor.htm">
<HelpTOCNode Title="HostTypeCollection Constructor " Url="html/M_Microsoft_ClearScript_HostTypeCollection__ctor.htm" />
<HelpTOCNode Title="HostTypeCollection Constructor (Assembly[])" Url="html/M_Microsoft_ClearScript_HostTypeCollection__ctor_3.htm" />
<HelpTOCNode Title="HostTypeCollection Constructor (String[])" Url="html/M_Microsoft_ClearScript_HostTypeCollection__ctor_4.htm" />
@ -129,14 +129,14 @@
<HelpTOCNode Title="HostTypeCollection Constructor (Predicate(Type), String[])" Url="html/M_Microsoft_ClearScript_HostTypeCollection__ctor_2.htm" />
</HelpTOCNode>
<HelpTOCNode Title="HostTypeCollection Properties" Url="html/Properties_T_Microsoft_ClearScript_HostTypeCollection.htm" />
<HelpTOCNode Id="e120888b-8ffc-4885-8b1a-258f5f9092c8" Title="HostTypeCollection Methods" Url="html/Methods_T_Microsoft_ClearScript_HostTypeCollection.htm">
<HelpTOCNode Id="6bda081e-f651-49dc-b550-e170f3d2a89d" Title="AddAssembly Method " Url="html/Overload_Microsoft_ClearScript_HostTypeCollection_AddAssembly.htm">
<HelpTOCNode Id="0ab588d7-c997-45c5-b019-ff197aee26c8" Title="HostTypeCollection Methods" Url="html/Methods_T_Microsoft_ClearScript_HostTypeCollection.htm">
<HelpTOCNode Id="b435b019-37e8-4fd7-ae08-01f31218e18c" Title="AddAssembly Method " Url="html/Overload_Microsoft_ClearScript_HostTypeCollection_AddAssembly.htm">
<HelpTOCNode Title="AddAssembly Method (Assembly)" Url="html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly.htm" />
<HelpTOCNode Title="AddAssembly Method (String)" Url="html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_2.htm" />
<HelpTOCNode Title="AddAssembly Method (Assembly, Predicate(Type))" Url="html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_1.htm" />
<HelpTOCNode Title="AddAssembly Method (String, Predicate(Type))" Url="html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_3.htm" />
</HelpTOCNode>
<HelpTOCNode Id="7a1b7a27-72c4-4e18-94f4-3843323df124" Title="AddType Method " Url="html/Overload_Microsoft_ClearScript_HostTypeCollection_AddType.htm">
<HelpTOCNode Id="7f23c8bd-a01d-428c-b54c-b3bfcb79799a" Title="AddType Method " Url="html/Overload_Microsoft_ClearScript_HostTypeCollection_AddType.htm">
<HelpTOCNode Title="AddType Method (Type)" Url="html/M_Microsoft_ClearScript_HostTypeCollection_AddType_2.htm" />
<HelpTOCNode Title="AddType Method (String, Type[])" Url="html/M_Microsoft_ClearScript_HostTypeCollection_AddType_1.htm" />
<HelpTOCNode Title="AddType Method (String, String, Type[])" Url="html/M_Microsoft_ClearScript_HostTypeCollection_AddType.htm" />
@ -145,22 +145,22 @@
</HelpTOCNode>
<HelpTOCNode Title="HostTypeCollection Events" Url="html/Events_T_Microsoft_ClearScript_HostTypeCollection.htm" />
</HelpTOCNode>
<HelpTOCNode Id="4d73fe89-bdfa-49a1-b025-3bf34cb36083" Title="ImmutableValueAttribute Class" Url="html/T_Microsoft_ClearScript_ImmutableValueAttribute.htm">
<HelpTOCNode Id="ec9b308a-2122-4f0b-a267-0f27015f4e39" Title="ImmutableValueAttribute Class" Url="html/T_Microsoft_ClearScript_ImmutableValueAttribute.htm">
<HelpTOCNode Title="ImmutableValueAttribute Constructor " Url="html/M_Microsoft_ClearScript_ImmutableValueAttribute__ctor.htm" />
<HelpTOCNode Title="ImmutableValueAttribute Properties" Url="html/Properties_T_Microsoft_ClearScript_ImmutableValueAttribute.htm" />
<HelpTOCNode Title="ImmutableValueAttribute Methods" Url="html/Methods_T_Microsoft_ClearScript_ImmutableValueAttribute.htm" />
</HelpTOCNode>
<HelpTOCNode Id="b33cc868-7ceb-4e74-a394-0ac58a7c8c2a" Title="IPropertyBag Interface" Url="html/T_Microsoft_ClearScript_IPropertyBag.htm">
<HelpTOCNode Id="f9048ed0-7592-4e40-9044-d5d8bfb5e7fb" Title="IPropertyBag Interface" Url="html/T_Microsoft_ClearScript_IPropertyBag.htm">
<HelpTOCNode Title="IPropertyBag Properties" Url="html/Properties_T_Microsoft_ClearScript_IPropertyBag.htm" />
<HelpTOCNode Title="IPropertyBag Methods" Url="html/Methods_T_Microsoft_ClearScript_IPropertyBag.htm" />
</HelpTOCNode>
<HelpTOCNode Id="8b68de54-a4b1-45cd-9414-5aec9b88d193" Title="IScriptableObject Interface" Url="html/T_Microsoft_ClearScript_IScriptableObject.htm">
<HelpTOCNode Id="e55cdcbf-f7b8-4a8b-96f3-289972bc8f3c" Title="IScriptableObject Methods" Url="html/Methods_T_Microsoft_ClearScript_IScriptableObject.htm">
<HelpTOCNode Id="e39b8be1-40ef-4832-978b-980fce01d733" Title="IScriptableObject Interface" Url="html/T_Microsoft_ClearScript_IScriptableObject.htm">
<HelpTOCNode Id="7b6f90c4-7848-4b09-b423-2888b558892d" Title="IScriptableObject Methods" Url="html/Methods_T_Microsoft_ClearScript_IScriptableObject.htm">
<HelpTOCNode Title="OnExposedToScriptCode Method " Url="html/M_Microsoft_ClearScript_IScriptableObject_OnExposedToScriptCode.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="61a535db-9abd-4fab-b58d-7be84bb504cf" Title="IScriptEngineException Interface" Url="html/T_Microsoft_ClearScript_IScriptEngineException.htm">
<HelpTOCNode Id="d44a0932-1b53-4b07-8586-8bfc63380138" Title="IScriptEngineException Properties" Url="html/Properties_T_Microsoft_ClearScript_IScriptEngineException.htm">
<HelpTOCNode Id="6632c1e2-bee8-426a-b49e-d19d44ce4d15" Title="IScriptEngineException Interface" Url="html/T_Microsoft_ClearScript_IScriptEngineException.htm">
<HelpTOCNode Id="56c3563e-ccf6-4826-a465-6bd1812a7aa0" Title="IScriptEngineException Properties" Url="html/Properties_T_Microsoft_ClearScript_IScriptEngineException.htm">
<HelpTOCNode Title="EngineName Property " Url="html/P_Microsoft_ClearScript_IScriptEngineException_EngineName.htm" />
<HelpTOCNode Title="ErrorDetails Property " Url="html/P_Microsoft_ClearScript_IScriptEngineException_ErrorDetails.htm" />
<HelpTOCNode Title="ExecutionStarted Property " Url="html/P_Microsoft_ClearScript_IScriptEngineException_ExecutionStarted.htm" />
@ -171,27 +171,27 @@
<HelpTOCNode Title="ScriptException Property " Url="html/P_Microsoft_ClearScript_IScriptEngineException_ScriptException.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="69f0b686-5199-4109-bdaf-e3053431ac53" Title="NoDefaultScriptAccessAttribute Class" Url="html/T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm">
<HelpTOCNode Id="dedc7a14-b0b6-4224-b2fa-384141cf155c" Title="NoDefaultScriptAccessAttribute Class" Url="html/T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm">
<HelpTOCNode Title="NoDefaultScriptAccessAttribute Constructor " Url="html/M_Microsoft_ClearScript_NoDefaultScriptAccessAttribute__ctor.htm" />
<HelpTOCNode Title="NoDefaultScriptAccessAttribute Properties" Url="html/Properties_T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm" />
<HelpTOCNode Title="NoDefaultScriptAccessAttribute Methods" Url="html/Methods_T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm" />
</HelpTOCNode>
<HelpTOCNode Id="7ba9fa9d-c525-43d1-99c2-b04dc7aeaa3a" Title="NoScriptAccessAttribute Class" Url="html/T_Microsoft_ClearScript_NoScriptAccessAttribute.htm">
<HelpTOCNode Id="f3f10ddc-79ba-4502-9b1a-982e0ddf8e69" Title="NoScriptAccessAttribute Class" Url="html/T_Microsoft_ClearScript_NoScriptAccessAttribute.htm">
<HelpTOCNode Title="NoScriptAccessAttribute Constructor " Url="html/M_Microsoft_ClearScript_NoScriptAccessAttribute__ctor.htm" />
<HelpTOCNode Title="NoScriptAccessAttribute Properties" Url="html/Properties_T_Microsoft_ClearScript_NoScriptAccessAttribute.htm" />
<HelpTOCNode Title="NoScriptAccessAttribute Methods" Url="html/Methods_T_Microsoft_ClearScript_NoScriptAccessAttribute.htm" />
</HelpTOCNode>
<HelpTOCNode Id="0d671456-5985-48cd-a911-10437b6815f6" Title="PropertyBag Class" Url="html/T_Microsoft_ClearScript_PropertyBag.htm">
<HelpTOCNode Id="1b8ff602-558d-48af-9037-b567dc120f4c" Title="PropertyBag Constructor " Url="html/Overload_Microsoft_ClearScript_PropertyBag__ctor.htm">
<HelpTOCNode Id="ac216d2b-94bb-4e7c-b4da-f2945ace552e" Title="PropertyBag Class" Url="html/T_Microsoft_ClearScript_PropertyBag.htm">
<HelpTOCNode Id="283ee6ea-45fe-4181-aacb-b2d4bcceeda1" Title="PropertyBag Constructor " Url="html/Overload_Microsoft_ClearScript_PropertyBag__ctor.htm">
<HelpTOCNode Title="PropertyBag Constructor " Url="html/M_Microsoft_ClearScript_PropertyBag__ctor.htm" />
<HelpTOCNode Title="PropertyBag Constructor (Boolean)" Url="html/M_Microsoft_ClearScript_PropertyBag__ctor_1.htm" />
</HelpTOCNode>
<HelpTOCNode Id="88843069-7ffa-4ba0-a4ec-4ca0b203c002" Title="PropertyBag Properties" Url="html/Properties_T_Microsoft_ClearScript_PropertyBag.htm">
<HelpTOCNode Id="5fea395b-644c-4ae3-a0f1-205bac233c95" Title="PropertyBag Properties" Url="html/Properties_T_Microsoft_ClearScript_PropertyBag.htm">
<HelpTOCNode Title="Item Property " Url="html/P_Microsoft_ClearScript_PropertyBag_Item.htm" />
<HelpTOCNode Title="Keys Property " Url="html/P_Microsoft_ClearScript_PropertyBag_Keys.htm" />
<HelpTOCNode Title="Values Property " Url="html/P_Microsoft_ClearScript_PropertyBag_Values.htm" />
</HelpTOCNode>
<HelpTOCNode Id="e1960bab-a609-4243-86e6-654562a1c20f" Title="PropertyBag Methods" Url="html/Methods_T_Microsoft_ClearScript_PropertyBag.htm">
<HelpTOCNode Id="20a28a08-3dac-47ce-8e02-a3e0bf187cc7" Title="PropertyBag Methods" Url="html/Methods_T_Microsoft_ClearScript_PropertyBag.htm">
<HelpTOCNode Title="Add Method " Url="html/M_Microsoft_ClearScript_PropertyBag_Add.htm" />
<HelpTOCNode Title="ClearNoCheck Method " Url="html/M_Microsoft_ClearScript_PropertyBag_ClearNoCheck.htm" />
<HelpTOCNode Title="ContainsKey Method " Url="html/M_Microsoft_ClearScript_PropertyBag_ContainsKey.htm" />
@ -200,14 +200,14 @@
<HelpTOCNode Title="SetPropertyNoCheck Method " Url="html/M_Microsoft_ClearScript_PropertyBag_SetPropertyNoCheck.htm" />
<HelpTOCNode Title="TryGetValue Method " Url="html/M_Microsoft_ClearScript_PropertyBag_TryGetValue.htm" />
</HelpTOCNode>
<HelpTOCNode Id="ca8cbd11-27a0-495e-98ec-c1e71a253539" Title="PropertyBag Events" Url="html/Events_T_Microsoft_ClearScript_PropertyBag.htm">
<HelpTOCNode Id="30db1b16-a97d-4c9e-89b8-ebced0250e7d" Title="PropertyBag Events" Url="html/Events_T_Microsoft_ClearScript_PropertyBag.htm">
<HelpTOCNode Title="PropertyChanged Event" Url="html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Title="ScriptAccess Enumeration" Url="html/T_Microsoft_ClearScript_ScriptAccess.htm" />
<HelpTOCNode Id="0ca93ff7-6e55-4a1a-a9be-d23e626f9526" Title="ScriptEngine Class" Url="html/T_Microsoft_ClearScript_ScriptEngine.htm">
<HelpTOCNode Id="dc56fb5d-7d65-497d-a82d-a7a92b7fe017" Title="ScriptEngine Class" Url="html/T_Microsoft_ClearScript_ScriptEngine.htm">
<HelpTOCNode Title="ScriptEngine Constructor " Url="html/M_Microsoft_ClearScript_ScriptEngine__ctor.htm" />
<HelpTOCNode Id="58004a82-94eb-426b-8e4d-601c84936e87" Title="ScriptEngine Properties" Url="html/Properties_T_Microsoft_ClearScript_ScriptEngine.htm">
<HelpTOCNode Id="347e5aa1-0a23-446d-ac85-920988da7ea7" Title="ScriptEngine Properties" Url="html/Properties_T_Microsoft_ClearScript_ScriptEngine.htm">
<HelpTOCNode Title="AccessContext Property " Url="html/P_Microsoft_ClearScript_ScriptEngine_AccessContext.htm" />
<HelpTOCNode Title="AllowReflection Property " Url="html/P_Microsoft_ClearScript_ScriptEngine_AllowReflection.htm" />
<HelpTOCNode Title="ContinuationCallback Property " Url="html/P_Microsoft_ClearScript_ScriptEngine_ContinuationCallback.htm" />
@ -224,8 +224,8 @@
<HelpTOCNode Title="Script Property " Url="html/P_Microsoft_ClearScript_ScriptEngine_Script.htm" />
<HelpTOCNode Title="UseReflectionBindFallback Property " Url="html/P_Microsoft_ClearScript_ScriptEngine_UseReflectionBindFallback.htm" />
</HelpTOCNode>
<HelpTOCNode Id="934870bf-6d12-4874-aac1-5624140925f1" Title="ScriptEngine Methods" Url="html/Methods_T_Microsoft_ClearScript_ScriptEngine.htm">
<HelpTOCNode Id="94440762-f736-4f17-823e-29972565de6c" Title="AddCOMObject Method " Url="html/Overload_Microsoft_ClearScript_ScriptEngine_AddCOMObject.htm">
<HelpTOCNode Id="19f14ec1-55cd-4262-a7ed-d09ff94c80b1" Title="ScriptEngine Methods" Url="html/Methods_T_Microsoft_ClearScript_ScriptEngine.htm">
<HelpTOCNode Id="d013aa8c-bd19-4137-a263-a267d479cac0" Title="AddCOMObject Method " Url="html/Overload_Microsoft_ClearScript_ScriptEngine_AddCOMObject.htm">
<HelpTOCNode Title="AddCOMObject Method (String, Guid)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_4.htm" />
<HelpTOCNode Title="AddCOMObject Method (String, String)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_6.htm" />
<HelpTOCNode Title="AddCOMObject Method (String, HostItemFlags, Guid)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject.htm" />
@ -235,7 +235,7 @@
<HelpTOCNode Title="AddCOMObject Method (String, HostItemFlags, Guid, String)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_1.htm" />
<HelpTOCNode Title="AddCOMObject Method (String, HostItemFlags, String, String)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_3.htm" />
</HelpTOCNode>
<HelpTOCNode Id="2aa7a7cd-1235-4422-a3db-10b54d18418f" Title="AddCOMType Method " Url="html/Overload_Microsoft_ClearScript_ScriptEngine_AddCOMType.htm">
<HelpTOCNode Id="62a7aeb1-8f69-4c04-b187-da61b28fd6f2" Title="AddCOMType Method " Url="html/Overload_Microsoft_ClearScript_ScriptEngine_AddCOMType.htm">
<HelpTOCNode Title="AddCOMType Method (String, Guid)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_4.htm" />
<HelpTOCNode Title="AddCOMType Method (String, String)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_6.htm" />
<HelpTOCNode Title="AddCOMType Method (String, HostItemFlags, Guid)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType.htm" />
@ -245,11 +245,11 @@
<HelpTOCNode Title="AddCOMType Method (String, HostItemFlags, Guid, String)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_1.htm" />
<HelpTOCNode Title="AddCOMType Method (String, HostItemFlags, String, String)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_3.htm" />
</HelpTOCNode>
<HelpTOCNode Id="7d6f18eb-4a3e-4eb3-8c50-e9bc2552ec37" Title="AddHostObject Method " Url="html/Overload_Microsoft_ClearScript_ScriptEngine_AddHostObject.htm">
<HelpTOCNode Id="1c056af4-98c7-42f9-8615-a358d5f36f38" Title="AddHostObject Method " Url="html/Overload_Microsoft_ClearScript_ScriptEngine_AddHostObject.htm">
<HelpTOCNode Title="AddHostObject Method (String, Object)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddHostObject_1.htm" />
<HelpTOCNode Title="AddHostObject Method (String, HostItemFlags, Object)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddHostObject.htm" />
</HelpTOCNode>
<HelpTOCNode Id="176d822e-5666-47ef-bea7-efd21e36d306" Title="AddHostType Method " Url="html/Overload_Microsoft_ClearScript_ScriptEngine_AddHostType.htm">
<HelpTOCNode Id="32cfec24-d03a-43ca-b5e4-6051f1393f4f" Title="AddHostType Method " Url="html/Overload_Microsoft_ClearScript_ScriptEngine_AddHostType.htm">
<HelpTOCNode Title="AddHostType Method (Type)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_7.htm" />
<HelpTOCNode Title="AddHostType Method (String, Type)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_6.htm" />
<HelpTOCNode Title="AddHostType Method (HostItemFlags, Type)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddHostType.htm" />
@ -259,22 +259,22 @@
<HelpTOCNode Title="AddHostType Method (String, String, String, Type[])" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_4.htm" />
<HelpTOCNode Title="AddHostType Method (String, HostItemFlags, String, String, Type[])" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_1.htm" />
</HelpTOCNode>
<HelpTOCNode Id="6785caa5-dd57-46be-8b63-eba13c2a7e91" Title="AddRestrictedHostObject Method " Url="html/Overload_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject.htm">
<HelpTOCNode Id="a6acf460-c54d-49d5-a25f-b94de501f7ff" Title="AddRestrictedHostObject Method " Url="html/Overload_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject.htm">
<HelpTOCNode Title="AddRestrictedHostObject(T) Method (String, T)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject__1_1.htm" />
<HelpTOCNode Title="AddRestrictedHostObject(T) Method (String, HostItemFlags, T)" Url="html/M_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject__1.htm" />
</HelpTOCNode>
<HelpTOCNode Title="CollectGarbage Method " Url="html/M_Microsoft_ClearScript_ScriptEngine_CollectGarbage.htm" />
<HelpTOCNode Id="f6ba76ac-b50a-458b-a536-0f953a4da723" Title="Dispose Method " Url="html/Overload_Microsoft_ClearScript_ScriptEngine_Dispose.htm">
<HelpTOCNode Id="b053e146-9c2b-4d7b-8cec-644ab62040b5" Title="Dispose Method " Url="html/Overload_Microsoft_ClearScript_ScriptEngine_Dispose.htm">
<HelpTOCNode Title="Dispose Method " Url="html/M_Microsoft_ClearScript_ScriptEngine_Dispose.htm" />
<HelpTOCNode Title="Dispose Method (Boolean)" Url="html/M_Microsoft_ClearScript_ScriptEngine_Dispose_1.htm" />
</HelpTOCNode>
<HelpTOCNode Id="7d426358-898c-44d6-872f-3fa2a33e7b0b" Title="Evaluate Method " Url="html/Overload_Microsoft_ClearScript_ScriptEngine_Evaluate.htm">
<HelpTOCNode Id="f0504cbf-c87c-4c25-86cd-6d4c9f0a6058" Title="Evaluate Method " Url="html/Overload_Microsoft_ClearScript_ScriptEngine_Evaluate.htm">
<HelpTOCNode Title="Evaluate Method (String)" Url="html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_1.htm" />
<HelpTOCNode Title="Evaluate Method (String, String)" Url="html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_3.htm" />
<HelpTOCNode Title="Evaluate Method (DocumentInfo, String)" Url="html/M_Microsoft_ClearScript_ScriptEngine_Evaluate.htm" />
<HelpTOCNode Title="Evaluate Method (String, Boolean, String)" Url="html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_2.htm" />
</HelpTOCNode>
<HelpTOCNode Id="8cbeb16e-ffe1-4d8f-b034-2af222ecb5b9" Title="Execute Method " Url="html/Overload_Microsoft_ClearScript_ScriptEngine_Execute.htm">
<HelpTOCNode Id="d592813d-5eb6-4869-bf2e-e174258bdf72" Title="Execute Method " Url="html/Overload_Microsoft_ClearScript_ScriptEngine_Execute.htm">
<HelpTOCNode Title="Execute Method (String)" Url="html/M_Microsoft_ClearScript_ScriptEngine_Execute_1.htm" />
<HelpTOCNode Title="Execute Method (String, String)" Url="html/M_Microsoft_ClearScript_ScriptEngine_Execute_3.htm" />
<HelpTOCNode Title="Execute Method (DocumentInfo, String)" Url="html/M_Microsoft_ClearScript_ScriptEngine_Execute.htm" />
@ -287,48 +287,48 @@
<HelpTOCNode Title="Invoke Method " Url="html/M_Microsoft_ClearScript_ScriptEngine_Invoke.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="a601f45d-f8a0-4861-867e-8470aaa1455c" Title="ScriptEngineException Class" Url="html/T_Microsoft_ClearScript_ScriptEngineException.htm">
<HelpTOCNode Id="c015d347-3c87-4dc4-9d71-afde20d0fcef" Title="ScriptEngineException Constructor " Url="html/Overload_Microsoft_ClearScript_ScriptEngineException__ctor.htm">
<HelpTOCNode Id="7bbbf089-8f62-4ad7-a76f-daa51d3cc94a" Title="ScriptEngineException Class" Url="html/T_Microsoft_ClearScript_ScriptEngineException.htm">
<HelpTOCNode Id="f54ebb9c-45a0-4bc8-8eb2-ef189ae0d46e" Title="ScriptEngineException Constructor " Url="html/Overload_Microsoft_ClearScript_ScriptEngineException__ctor.htm">
<HelpTOCNode Title="ScriptEngineException Constructor " Url="html/M_Microsoft_ClearScript_ScriptEngineException__ctor.htm" />
<HelpTOCNode Title="ScriptEngineException Constructor (String)" Url="html/M_Microsoft_ClearScript_ScriptEngineException__ctor_2.htm" />
<HelpTOCNode Title="ScriptEngineException Constructor (SerializationInfo, StreamingContext)" Url="html/M_Microsoft_ClearScript_ScriptEngineException__ctor_1.htm" />
<HelpTOCNode Title="ScriptEngineException Constructor (String, Exception)" Url="html/M_Microsoft_ClearScript_ScriptEngineException__ctor_3.htm" />
</HelpTOCNode>
<HelpTOCNode Id="31c1bfec-b0df-4327-8939-b5a9f1806d47" Title="ScriptEngineException Properties" Url="html/Properties_T_Microsoft_ClearScript_ScriptEngineException.htm">
<HelpTOCNode Id="81ed773b-2de0-4fff-88e8-9e44213afceb" Title="ScriptEngineException Properties" Url="html/Properties_T_Microsoft_ClearScript_ScriptEngineException.htm">
<HelpTOCNode Title="EngineName Property " Url="html/P_Microsoft_ClearScript_ScriptEngineException_EngineName.htm" />
<HelpTOCNode Title="ErrorDetails Property " Url="html/P_Microsoft_ClearScript_ScriptEngineException_ErrorDetails.htm" />
<HelpTOCNode Title="ExecutionStarted Property " Url="html/P_Microsoft_ClearScript_ScriptEngineException_ExecutionStarted.htm" />
<HelpTOCNode Title="IsFatal Property " Url="html/P_Microsoft_ClearScript_ScriptEngineException_IsFatal.htm" />
<HelpTOCNode Title="ScriptException Property " Url="html/P_Microsoft_ClearScript_ScriptEngineException_ScriptException.htm" />
</HelpTOCNode>
<HelpTOCNode Id="bb50c6be-1be2-4b77-9d9d-f15d46ebd0f7" Title="ScriptEngineException Methods" Url="html/Methods_T_Microsoft_ClearScript_ScriptEngineException.htm">
<HelpTOCNode Id="7f233851-dded-4782-9fb5-f14fa8a2acdc" Title="ScriptEngineException Methods" Url="html/Methods_T_Microsoft_ClearScript_ScriptEngineException.htm">
<HelpTOCNode Title="GetObjectData Method " Url="html/M_Microsoft_ClearScript_ScriptEngineException_GetObjectData.htm" />
<HelpTOCNode Title="ToString Method " Url="html/M_Microsoft_ClearScript_ScriptEngineException_ToString.htm" />
</HelpTOCNode>
<HelpTOCNode Title="ScriptEngineException Events" Url="html/Events_T_Microsoft_ClearScript_ScriptEngineException.htm" />
</HelpTOCNode>
<HelpTOCNode Id="7956882e-4973-4bae-ab75-f6a735269447" Title="ScriptInterruptedException Class" Url="html/T_Microsoft_ClearScript_ScriptInterruptedException.htm">
<HelpTOCNode Id="9009d93b-0afa-4555-9dce-fc29e7108e82" Title="ScriptInterruptedException Constructor " Url="html/Overload_Microsoft_ClearScript_ScriptInterruptedException__ctor.htm">
<HelpTOCNode Id="9b96a3d6-0c27-4006-8306-fc8ad4a8a4f8" Title="ScriptInterruptedException Class" Url="html/T_Microsoft_ClearScript_ScriptInterruptedException.htm">
<HelpTOCNode Id="03c84404-3e13-4ec6-ab31-ec5445573735" Title="ScriptInterruptedException Constructor " Url="html/Overload_Microsoft_ClearScript_ScriptInterruptedException__ctor.htm">
<HelpTOCNode Title="ScriptInterruptedException Constructor " Url="html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor.htm" />
<HelpTOCNode Title="ScriptInterruptedException Constructor (String)" Url="html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_2.htm" />
<HelpTOCNode Title="ScriptInterruptedException Constructor (SerializationInfo, StreamingContext)" Url="html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_1.htm" />
<HelpTOCNode Title="ScriptInterruptedException Constructor (String, Exception)" Url="html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_3.htm" />
</HelpTOCNode>
<HelpTOCNode Id="dc5726af-fd6e-49b2-b74d-820f84aca23a" Title="ScriptInterruptedException Properties" Url="html/Properties_T_Microsoft_ClearScript_ScriptInterruptedException.htm">
<HelpTOCNode Id="0197ed04-df11-41df-a0c9-734aeb32dedf" Title="ScriptInterruptedException Properties" Url="html/Properties_T_Microsoft_ClearScript_ScriptInterruptedException.htm">
<HelpTOCNode Title="EngineName Property " Url="html/P_Microsoft_ClearScript_ScriptInterruptedException_EngineName.htm" />
<HelpTOCNode Title="ErrorDetails Property " Url="html/P_Microsoft_ClearScript_ScriptInterruptedException_ErrorDetails.htm" />
<HelpTOCNode Title="ExecutionStarted Property " Url="html/P_Microsoft_ClearScript_ScriptInterruptedException_ExecutionStarted.htm" />
<HelpTOCNode Title="IsFatal Property " Url="html/P_Microsoft_ClearScript_ScriptInterruptedException_IsFatal.htm" />
<HelpTOCNode Title="ScriptException Property " Url="html/P_Microsoft_ClearScript_ScriptInterruptedException_ScriptException.htm" />
</HelpTOCNode>
<HelpTOCNode Id="50a2e6d5-f70c-41a8-973e-6363899c8831" Title="ScriptInterruptedException Methods" Url="html/Methods_T_Microsoft_ClearScript_ScriptInterruptedException.htm">
<HelpTOCNode Id="69ffe8a5-ec99-4b1b-a917-2fbd0feb1e66" Title="ScriptInterruptedException Methods" Url="html/Methods_T_Microsoft_ClearScript_ScriptInterruptedException.htm">
<HelpTOCNode Title="GetObjectData Method " Url="html/M_Microsoft_ClearScript_ScriptInterruptedException_GetObjectData.htm" />
<HelpTOCNode Title="ToString Method " Url="html/M_Microsoft_ClearScript_ScriptInterruptedException_ToString.htm" />
</HelpTOCNode>
<HelpTOCNode Title="ScriptInterruptedException Events" Url="html/Events_T_Microsoft_ClearScript_ScriptInterruptedException.htm" />
</HelpTOCNode>
<HelpTOCNode Id="af7631fe-8af0-463b-b1db-4323400be99f" Title="ScriptMemberAttribute Class" Url="html/T_Microsoft_ClearScript_ScriptMemberAttribute.htm">
<HelpTOCNode Id="31314ca6-ab74-423f-95bb-1b4f912395cc" Title="ScriptMemberAttribute Constructor " Url="html/Overload_Microsoft_ClearScript_ScriptMemberAttribute__ctor.htm">
<HelpTOCNode Id="2f442246-b18f-40b3-882b-55b254288c94" Title="ScriptMemberAttribute Class" Url="html/T_Microsoft_ClearScript_ScriptMemberAttribute.htm">
<HelpTOCNode Id="647c3904-677d-425a-94fb-3a4da1416179" Title="ScriptMemberAttribute Constructor " Url="html/Overload_Microsoft_ClearScript_ScriptMemberAttribute__ctor.htm">
<HelpTOCNode Title="ScriptMemberAttribute Constructor " Url="html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor.htm" />
<HelpTOCNode Title="ScriptMemberAttribute Constructor (String)" Url="html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_4.htm" />
<HelpTOCNode Title="ScriptMemberAttribute Constructor (ScriptAccess)" Url="html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_1.htm" />
@ -338,84 +338,105 @@
<HelpTOCNode Title="ScriptMemberAttribute Constructor (ScriptAccess, ScriptMemberFlags)" Url="html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_2.htm" />
<HelpTOCNode Title="ScriptMemberAttribute Constructor (String, ScriptAccess, ScriptMemberFlags)" Url="html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_6.htm" />
</HelpTOCNode>
<HelpTOCNode Id="faae73e8-b4c6-4d44-8252-c5822b59301d" Title="ScriptMemberAttribute Properties" Url="html/Properties_T_Microsoft_ClearScript_ScriptMemberAttribute.htm">
<HelpTOCNode Id="e4598b31-6601-4d44-a9d4-342b45d8a0f7" Title="ScriptMemberAttribute Properties" Url="html/Properties_T_Microsoft_ClearScript_ScriptMemberAttribute.htm">
<HelpTOCNode Title="Flags Property " Url="html/P_Microsoft_ClearScript_ScriptMemberAttribute_Flags.htm" />
<HelpTOCNode Title="Name Property " Url="html/P_Microsoft_ClearScript_ScriptMemberAttribute_Name.htm" />
</HelpTOCNode>
<HelpTOCNode Title="ScriptMemberAttribute Methods" Url="html/Methods_T_Microsoft_ClearScript_ScriptMemberAttribute.htm" />
</HelpTOCNode>
<HelpTOCNode Title="ScriptMemberFlags Enumeration" Url="html/T_Microsoft_ClearScript_ScriptMemberFlags.htm" />
<HelpTOCNode Id="e07a4f8a-15fd-4794-8684-86dbfaccff80" Title="ScriptObject Class" Url="html/T_Microsoft_ClearScript_ScriptObject.htm">
<HelpTOCNode Id="a756d120-1eb0-48a8-a41a-807bf3ebcca4" Title="ScriptObject Properties" Url="html/Properties_T_Microsoft_ClearScript_ScriptObject.htm">
<HelpTOCNode Id="30085cdd-898e-49b1-8c1d-f95a2dc9ae53" Title="ScriptObject Class" Url="html/T_Microsoft_ClearScript_ScriptObject.htm">
<HelpTOCNode Id="a78679df-55e8-4a78-9f3d-d1e050754f5d" Title="ScriptObject Properties" Url="html/Properties_T_Microsoft_ClearScript_ScriptObject.htm">
<HelpTOCNode Title="Engine Property " Url="html/P_Microsoft_ClearScript_ScriptObject_Engine.htm" />
<HelpTOCNode Id="385b8836-9103-4640-ba44-fa637b373d25" Title="Item Property " Url="html/Overload_Microsoft_ClearScript_ScriptObject_Item.htm">
<HelpTOCNode Title="Item Property (Int32)" Url="html/P_Microsoft_ClearScript_ScriptObject_Item.htm" />
<HelpTOCNode Title="Item Property (String, Object[])" Url="html/P_Microsoft_ClearScript_ScriptObject_Item_1.htm" />
</HelpTOCNode>
<HelpTOCNode Title="PropertyIndices Property " Url="html/P_Microsoft_ClearScript_ScriptObject_PropertyIndices.htm" />
<HelpTOCNode Title="PropertyNames Property " Url="html/P_Microsoft_ClearScript_ScriptObject_PropertyNames.htm" />
</HelpTOCNode>
<HelpTOCNode Id="2411de7d-10ba-4848-bed2-799bc116ef72" Title="ScriptObject Methods" Url="html/Methods_T_Microsoft_ClearScript_ScriptObject.htm">
<HelpTOCNode Id="969eb1ff-36f0-464e-bfd3-1209fafb959b" Title="DeleteProperty Method " Url="html/Overload_Microsoft_ClearScript_ScriptObject_DeleteProperty.htm">
<HelpTOCNode Title="DeleteProperty Method (Int32)" Url="html/M_Microsoft_ClearScript_ScriptObject_DeleteProperty.htm" />
<HelpTOCNode Title="DeleteProperty Method (String)" Url="html/M_Microsoft_ClearScript_ScriptObject_DeleteProperty_1.htm" />
</HelpTOCNode>
<HelpTOCNode Id="79b87901-e1b1-4aa0-bb2e-30c566f111f7" Title="GetProperty Method " Url="html/Overload_Microsoft_ClearScript_ScriptObject_GetProperty.htm">
<HelpTOCNode Title="GetProperty Method (Int32)" Url="html/M_Microsoft_ClearScript_ScriptObject_GetProperty.htm" />
<HelpTOCNode Title="GetProperty Method (String, Object[])" Url="html/M_Microsoft_ClearScript_ScriptObject_GetProperty_1.htm" />
</HelpTOCNode>
<HelpTOCNode Title="Invoke Method " Url="html/M_Microsoft_ClearScript_ScriptObject_Invoke.htm" />
<HelpTOCNode Title="InvokeMethod Method " Url="html/M_Microsoft_ClearScript_ScriptObject_InvokeMethod.htm" />
<HelpTOCNode Id="2ecd3be7-c7f5-4c79-960d-b3b4b37d8d58" Title="SetProperty Method " Url="html/Overload_Microsoft_ClearScript_ScriptObject_SetProperty.htm">
<HelpTOCNode Title="SetProperty Method (Int32, Object)" Url="html/M_Microsoft_ClearScript_ScriptObject_SetProperty.htm" />
<HelpTOCNode Title="SetProperty Method (String, Object[])" Url="html/M_Microsoft_ClearScript_ScriptObject_SetProperty_1.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Title="ScriptObject Methods" Url="html/Methods_T_Microsoft_ClearScript_ScriptObject.htm" />
</HelpTOCNode>
<HelpTOCNode Id="8af6c543-ca2e-4717-8c1b-2d0c4e2b5f37" Title="ScriptUsageAttribute Class" Url="html/T_Microsoft_ClearScript_ScriptUsageAttribute.htm">
<HelpTOCNode Id="cbddaa62-ad67-4736-ab31-7d583714037b" Title="ScriptUsageAttribute Constructor " Url="html/Overload_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm">
<HelpTOCNode Id="db0c8b21-098d-4bb0-976d-85c3f45c71d4" Title="ScriptUsageAttribute Class" Url="html/T_Microsoft_ClearScript_ScriptUsageAttribute.htm">
<HelpTOCNode Id="cd0b51b0-548e-4ef9-88fd-a27d5c7deba3" Title="ScriptUsageAttribute Constructor " Url="html/Overload_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm">
<HelpTOCNode Title="ScriptUsageAttribute Constructor " Url="html/M_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm" />
<HelpTOCNode Title="ScriptUsageAttribute Constructor (ScriptAccess)" Url="html/M_Microsoft_ClearScript_ScriptUsageAttribute__ctor_1.htm" />
</HelpTOCNode>
<HelpTOCNode Id="b8029452-5ace-489b-849a-5f4b69ec7dec" Title="ScriptUsageAttribute Properties" Url="html/Properties_T_Microsoft_ClearScript_ScriptUsageAttribute.htm">
<HelpTOCNode Id="36723cf5-1b30-471f-9f82-f7133de020b0" Title="ScriptUsageAttribute Properties" Url="html/Properties_T_Microsoft_ClearScript_ScriptUsageAttribute.htm">
<HelpTOCNode Title="Access Property " Url="html/P_Microsoft_ClearScript_ScriptUsageAttribute_Access.htm" />
</HelpTOCNode>
<HelpTOCNode Title="ScriptUsageAttribute Methods" Url="html/Methods_T_Microsoft_ClearScript_ScriptUsageAttribute.htm" />
</HelpTOCNode>
<HelpTOCNode Id="902418d4-c87c-4810-b72b-76437df4e2d7" Title="Undefined Class" Url="html/T_Microsoft_ClearScript_Undefined.htm">
<HelpTOCNode Id="a51f2cd4-dc7b-4a66-9ab3-21aee861328c" Title="Undefined Methods" Url="html/Methods_T_Microsoft_ClearScript_Undefined.htm">
<HelpTOCNode Id="f01653be-7939-4ab0-b3c5-4b8c192c8853" Title="Undefined Class" Url="html/T_Microsoft_ClearScript_Undefined.htm">
<HelpTOCNode Id="a82799de-3a4d-48da-ae5a-7ae5e15b688f" Title="Undefined Methods" Url="html/Methods_T_Microsoft_ClearScript_Undefined.htm">
<HelpTOCNode Title="ToString Method " Url="html/M_Microsoft_ClearScript_Undefined_ToString.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="697883b3-0151-4af3-bb0d-a02941d7867d" Title="VoidResult Class" Url="html/T_Microsoft_ClearScript_VoidResult.htm">
<HelpTOCNode Id="8ed84859-8afc-4288-8640-467cda11744e" Title="VoidResult Class" Url="html/T_Microsoft_ClearScript_VoidResult.htm">
<HelpTOCNode Title="VoidResult Methods" Url="html/Methods_T_Microsoft_ClearScript_VoidResult.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="b169f68d-e47b-4208-ab65-a6c9df8800bd" Title="Microsoft.ClearScript.JavaScript" Url="html/N_Microsoft_ClearScript_JavaScript.htm">
<HelpTOCNode Id="353230f2-ff55-4fc3-974a-b4bcfd48e197" Title="IArrayBuffer Interface" Url="html/T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm">
<HelpTOCNode Id="8b83a076-599e-4ff8-b53e-ef79487a842c" Title="IArrayBuffer Properties" Url="html/Properties_T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm">
<HelpTOCNode Id="2f961dd8-25df-43c7-8020-d007f3a3e0cc" Title="Microsoft.ClearScript.JavaScript" Url="html/N_Microsoft_ClearScript_JavaScript.htm">
<HelpTOCNode Id="f1f7fc30-f347-4e1d-8117-8e39431538ff" Title="IArrayBuffer Interface" Url="html/T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm">
<HelpTOCNode Id="8a4b1586-c3b5-4af3-a089-a91bf4bd3075" Title="IArrayBuffer Properties" Url="html/Properties_T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm">
<HelpTOCNode Title="Size Property " Url="html/P_Microsoft_ClearScript_JavaScript_IArrayBuffer_Size.htm" />
</HelpTOCNode>
<HelpTOCNode Id="376a3698-57c2-4d38-a200-6db89469471f" Title="IArrayBuffer Methods" Url="html/Methods_T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm">
<HelpTOCNode Id="f2ff0b07-67d1-4789-89da-d3145b3f536a" Title="IArrayBuffer Methods" Url="html/Methods_T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm">
<HelpTOCNode Title="GetBytes Method " Url="html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_GetBytes.htm" />
<HelpTOCNode Title="ReadBytes Method " Url="html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_ReadBytes.htm" />
<HelpTOCNode Title="WriteBytes Method " Url="html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_WriteBytes.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="a868b521-d2a6-421d-bc96-0efbc3d9ccff" Title="IArrayBufferView Interface" Url="html/T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm">
<HelpTOCNode Id="e94e1a45-f923-4baf-aef0-9a40222f03dc" Title="IArrayBufferView Properties" Url="html/Properties_T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm">
<HelpTOCNode Id="02100b78-8c47-4be9-9fc3-de90784dd94f" Title="IArrayBufferView Interface" Url="html/T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm">
<HelpTOCNode Id="a52b1ba0-8efc-4302-b97e-c1825390e16d" Title="IArrayBufferView Properties" Url="html/Properties_T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm">
<HelpTOCNode Title="ArrayBuffer Property " Url="html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_ArrayBuffer.htm" />
<HelpTOCNode Title="Offset Property " Url="html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_Offset.htm" />
<HelpTOCNode Title="Size Property " Url="html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_Size.htm" />
</HelpTOCNode>
<HelpTOCNode Id="6b6ec838-7558-4314-80a1-ae6fdd3760f7" Title="IArrayBufferView Methods" Url="html/Methods_T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm">
<HelpTOCNode Id="dcb7cbac-327a-43b0-80fe-25139234daad" Title="IArrayBufferView Methods" Url="html/Methods_T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm">
<HelpTOCNode Title="GetBytes Method " Url="html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_GetBytes.htm" />
<HelpTOCNode Title="ReadBytes Method " Url="html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_ReadBytes.htm" />
<HelpTOCNode Title="WriteBytes Method " Url="html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_WriteBytes.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="24a0fca5-d028-43c8-86f6-7a43cd0d5924" Title="IDataView Interface" Url="html/T_Microsoft_ClearScript_JavaScript_IDataView.htm">
<HelpTOCNode Id="e8911b1a-d7e7-4c24-847b-ebdef355e4cc" Title="IDataView Interface" Url="html/T_Microsoft_ClearScript_JavaScript_IDataView.htm">
<HelpTOCNode Title="IDataView Properties" Url="html/Properties_T_Microsoft_ClearScript_JavaScript_IDataView.htm" />
<HelpTOCNode Title="IDataView Methods" Url="html/Methods_T_Microsoft_ClearScript_JavaScript_IDataView.htm" />
</HelpTOCNode>
<HelpTOCNode Id="0eb4db8b-5690-4893-bb92-ba3297b9d2c6" Title="ITypedArray Interface" Url="html/T_Microsoft_ClearScript_JavaScript_ITypedArray.htm">
<HelpTOCNode Id="14cbabc5-e050-46b6-a8ff-ed4e473598a0" Title="ITypedArray Properties" Url="html/Properties_T_Microsoft_ClearScript_JavaScript_ITypedArray.htm">
<HelpTOCNode Id="d62a2544-125f-41e2-9660-9d2f8ce25c77" Title="ITypedArray Interface" Url="html/T_Microsoft_ClearScript_JavaScript_ITypedArray.htm">
<HelpTOCNode Id="ed53a6e7-d2d7-425c-9038-11e3821c66ee" Title="ITypedArray Properties" Url="html/Properties_T_Microsoft_ClearScript_JavaScript_ITypedArray.htm">
<HelpTOCNode Title="Length Property " Url="html/P_Microsoft_ClearScript_JavaScript_ITypedArray_Length.htm" />
</HelpTOCNode>
<HelpTOCNode Title="ITypedArray Methods" Url="html/Methods_T_Microsoft_ClearScript_JavaScript_ITypedArray.htm" />
</HelpTOCNode>
<HelpTOCNode Id="b4dac995-7b1f-4703-88c3-40c90efa5c10" Title="ITypedArray(T) Interface" Url="html/T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm">
<HelpTOCNode Id="32f48893-4eda-447a-ae36-749527d42560" Title="ITypedArray(T) Interface" Url="html/T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm">
<HelpTOCNode Title="ITypedArray(T) Properties" Url="html/Properties_T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm" />
<HelpTOCNode Id="56c783e6-b5a7-4c63-88ed-23f1d17dcc1e" Title="ITypedArray(T) Methods" Url="html/Methods_T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm">
<HelpTOCNode Id="de7e7553-f47a-419a-893c-26bf4ccea9c7" Title="ITypedArray(T) Methods" Url="html/Methods_T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm">
<HelpTOCNode Title="Read Method " Url="html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Read.htm" />
<HelpTOCNode Title="ToArray Method " Url="html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_ToArray.htm" />
<HelpTOCNode Title="Write Method " Url="html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Write.htm" />
</HelpTOCNode>
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="99968fe7-c72a-42af-91d9-d43e9d81aaa8" Title="Microsoft.ClearScript.V8" Url="html/N_Microsoft_ClearScript_V8.htm">
<HelpTOCNode Id="9e90445e-6016-4ffe-8eb0-7ca835f9b17b" Title="Microsoft.ClearScript.V8" Url="html/N_Microsoft_ClearScript_V8.htm">
<HelpTOCNode Title="V8CacheKind Enumeration" Url="html/T_Microsoft_ClearScript_V8_V8CacheKind.htm" />
<HelpTOCNode Id="8681d7dd-812e-4984-8d2b-923c13cabb10" Title="V8Runtime Class" Url="html/T_Microsoft_ClearScript_V8_V8Runtime.htm">
<HelpTOCNode Id="3f9e124e-2d89-4de8-a665-19e9fd4f2a0d" Title="V8Runtime Constructor " Url="html/Overload_Microsoft_ClearScript_V8_V8Runtime__ctor.htm">
<HelpTOCNode Id="35e3a1e9-46cc-4fbe-be0b-da625dbcc663" Title="V8Runtime Class" Url="html/T_Microsoft_ClearScript_V8_V8Runtime.htm">
<HelpTOCNode Id="b54060f1-f198-4b41-8896-12a70bce8307" Title="V8Runtime Constructor " Url="html/Overload_Microsoft_ClearScript_V8_V8Runtime__ctor.htm">
<HelpTOCNode Title="V8Runtime Constructor " Url="html/M_Microsoft_ClearScript_V8_V8Runtime__ctor.htm" />
<HelpTOCNode Title="V8Runtime Constructor (String)" Url="html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_6.htm" />
<HelpTOCNode Title="V8Runtime Constructor (V8RuntimeConstraints)" Url="html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_1.htm" />
@ -429,16 +450,16 @@
<HelpTOCNode Title="V8Runtime Constructor (V8RuntimeConstraints, V8RuntimeFlags, Int32)" Url="html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_3.htm" />
<HelpTOCNode Title="V8Runtime Constructor (String, V8RuntimeConstraints, V8RuntimeFlags, Int32)" Url="html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_9.htm" />
</HelpTOCNode>
<HelpTOCNode Id="1ab2a202-3711-4652-bb67-22ef685f3a93" Title="V8Runtime Properties" Url="html/Properties_T_Microsoft_ClearScript_V8_V8Runtime.htm">
<HelpTOCNode Id="fc1de8a9-a001-4384-be4b-c62d42fb6e93" Title="V8Runtime Properties" Url="html/Properties_T_Microsoft_ClearScript_V8_V8Runtime.htm">
<HelpTOCNode Title="FormatCode Property " Url="html/P_Microsoft_ClearScript_V8_V8Runtime_FormatCode.htm" />
<HelpTOCNode Title="HeapSizeSampleInterval Property " Url="html/P_Microsoft_ClearScript_V8_V8Runtime_HeapSizeSampleInterval.htm" />
<HelpTOCNode Title="MaxHeapSize Property " Url="html/P_Microsoft_ClearScript_V8_V8Runtime_MaxHeapSize.htm" />
<HelpTOCNode Title="MaxStackUsage Property " Url="html/P_Microsoft_ClearScript_V8_V8Runtime_MaxStackUsage.htm" />
<HelpTOCNode Title="Name Property " Url="html/P_Microsoft_ClearScript_V8_V8Runtime_Name.htm" />
</HelpTOCNode>
<HelpTOCNode Id="cf911027-6a00-457e-bbc1-54d55d59648d" Title="V8Runtime Methods" Url="html/Methods_T_Microsoft_ClearScript_V8_V8Runtime.htm">
<HelpTOCNode Id="61bca6db-8923-44cc-9401-39edafe613c1" Title="V8Runtime Methods" Url="html/Methods_T_Microsoft_ClearScript_V8_V8Runtime.htm">
<HelpTOCNode Title="CollectGarbage Method " Url="html/M_Microsoft_ClearScript_V8_V8Runtime_CollectGarbage.htm" />
<HelpTOCNode Id="28a2cdee-99e9-4303-b311-9818f1e6223c" Title="Compile Method " Url="html/Overload_Microsoft_ClearScript_V8_V8Runtime_Compile.htm">
<HelpTOCNode Id="37ab5520-f01f-4e6d-8614-9620bf28d6ef" Title="Compile Method " Url="html/Overload_Microsoft_ClearScript_V8_V8Runtime_Compile.htm">
<HelpTOCNode Title="Compile Method (String)" Url="html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_3.htm" />
<HelpTOCNode Title="Compile Method (String, String)" Url="html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_6.htm" />
<HelpTOCNode Title="Compile Method (DocumentInfo, String)" Url="html/M_Microsoft_ClearScript_V8_V8Runtime_Compile.htm" />
@ -449,7 +470,7 @@
<HelpTOCNode Title="Compile Method (String, String, V8CacheKind, Byte[], Boolean)" Url="html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_7.htm" />
<HelpTOCNode Title="Compile Method (DocumentInfo, String, V8CacheKind, Byte[], Boolean)" Url="html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_1.htm" />
</HelpTOCNode>
<HelpTOCNode Id="60f53881-cf60-4268-ab86-fee16b80da3f" Title="CreateScriptEngine Method " Url="html/Overload_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine.htm">
<HelpTOCNode Id="b3a426ac-08c8-49ee-9445-1c18a50c9ee4" Title="CreateScriptEngine Method " Url="html/Overload_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine.htm">
<HelpTOCNode Title="CreateScriptEngine Method " Url="html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine.htm" />
<HelpTOCNode Title="CreateScriptEngine Method (String)" Url="html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_3.htm" />
<HelpTOCNode Title="CreateScriptEngine Method (V8ScriptEngineFlags)" Url="html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_1.htm" />
@ -461,9 +482,9 @@
<HelpTOCNode Title="GetHeapInfo Method " Url="html/M_Microsoft_ClearScript_V8_V8Runtime_GetHeapInfo.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="d22f9823-50aa-400c-86ea-d898690cd20a" Title="V8RuntimeConstraints Class" Url="html/T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm">
<HelpTOCNode Id="b10c0e03-be4e-4ce4-a3ae-f5141eadeb5e" Title="V8RuntimeConstraints Class" Url="html/T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm">
<HelpTOCNode Title="V8RuntimeConstraints Constructor " Url="html/M_Microsoft_ClearScript_V8_V8RuntimeConstraints__ctor.htm" />
<HelpTOCNode Id="7a322e04-0b29-41fa-9a35-208125376b95" Title="V8RuntimeConstraints Properties" Url="html/Properties_T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm">
<HelpTOCNode Id="b9cd1dac-8403-4897-99cc-6d5bfc5fb339" Title="V8RuntimeConstraints Properties" Url="html/Properties_T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm">
<HelpTOCNode Title="MaxExecutableSize Property " Url="html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxExecutableSize.htm" />
<HelpTOCNode Title="MaxNewSpaceSize Property " Url="html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxNewSpaceSize.htm" />
<HelpTOCNode Title="MaxOldSpaceSize Property " Url="html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxOldSpaceSize.htm" />
@ -472,8 +493,8 @@
<HelpTOCNode Title="V8RuntimeConstraints Methods" Url="html/Methods_T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm" />
</HelpTOCNode>
<HelpTOCNode Title="V8RuntimeFlags Enumeration" Url="html/T_Microsoft_ClearScript_V8_V8RuntimeFlags.htm" />
<HelpTOCNode Id="21971b39-f1a5-42ae-8ace-3692e5eb41de" Title="V8RuntimeHeapInfo Class" Url="html/T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm">
<HelpTOCNode Id="756bc33c-1bdf-45d2-bb40-3e0f63b79dad" Title="V8RuntimeHeapInfo Properties" Url="html/Properties_T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm">
<HelpTOCNode Id="91474015-de69-4be5-9227-640d7e6e970d" Title="V8RuntimeHeapInfo Class" Url="html/T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm">
<HelpTOCNode Id="72cc1c80-6573-42fe-9789-6de6d5b8a158" Title="V8RuntimeHeapInfo Properties" Url="html/Properties_T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm">
<HelpTOCNode Title="HeapSizeLimit Property " Url="html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_HeapSizeLimit.htm" />
<HelpTOCNode Title="TotalHeapSize Property " Url="html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalHeapSize.htm" />
<HelpTOCNode Title="TotalHeapSizeExecutable Property " Url="html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalHeapSizeExecutable.htm" />
@ -482,17 +503,17 @@
</HelpTOCNode>
<HelpTOCNode Title="V8RuntimeHeapInfo Methods" Url="html/Methods_T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm" />
</HelpTOCNode>
<HelpTOCNode Id="17bc574f-4be0-479b-ab9f-e820299b67c7" Title="V8Script Class" Url="html/T_Microsoft_ClearScript_V8_V8Script.htm">
<HelpTOCNode Id="283476a8-b9b2-491d-8e2f-6cade4beb2b2" Title="V8Script Properties" Url="html/Properties_T_Microsoft_ClearScript_V8_V8Script.htm">
<HelpTOCNode Id="6fc5525f-6f47-4eca-a442-e3d2c1f7b004" Title="V8Script Class" Url="html/T_Microsoft_ClearScript_V8_V8Script.htm">
<HelpTOCNode Id="a44ca1a7-47ce-4cce-904c-7a3c7b232b04" Title="V8Script Properties" Url="html/Properties_T_Microsoft_ClearScript_V8_V8Script.htm">
<HelpTOCNode Title="DocumentInfo Property " Url="html/P_Microsoft_ClearScript_V8_V8Script_DocumentInfo.htm" />
<HelpTOCNode Title="Name Property " Url="html/P_Microsoft_ClearScript_V8_V8Script_Name.htm" />
</HelpTOCNode>
<HelpTOCNode Id="651d0ff5-a97b-4e28-b637-522523d0e51f" Title="V8Script Methods" Url="html/Methods_T_Microsoft_ClearScript_V8_V8Script.htm">
<HelpTOCNode Id="cc2d0b2b-f4cf-4a4f-b0e9-d65dea77c26a" Title="V8Script Methods" Url="html/Methods_T_Microsoft_ClearScript_V8_V8Script.htm">
<HelpTOCNode Title="Dispose Method " Url="html/M_Microsoft_ClearScript_V8_V8Script_Dispose.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="e7f65d3c-25ef-4b40-bddb-b5ffe7dd046c" Title="V8ScriptEngine Class" Url="html/T_Microsoft_ClearScript_V8_V8ScriptEngine.htm">
<HelpTOCNode Id="d8ebc9df-4edd-4efe-b68f-91a8b552c9f2" Title="V8ScriptEngine Constructor " Url="html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine__ctor.htm">
<HelpTOCNode Id="e4aceed3-6aa4-4b12-a928-8e81932b6b97" Title="V8ScriptEngine Class" Url="html/T_Microsoft_ClearScript_V8_V8ScriptEngine.htm">
<HelpTOCNode Id="e9959e7f-15dd-4ca5-b325-974c8d01605a" Title="V8ScriptEngine Constructor " Url="html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine__ctor.htm">
<HelpTOCNode Title="V8ScriptEngine Constructor " Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor.htm" />
<HelpTOCNode Title="V8ScriptEngine Constructor (String)" Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_6.htm" />
<HelpTOCNode Title="V8ScriptEngine Constructor (V8RuntimeConstraints)" Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_1.htm" />
@ -506,7 +527,7 @@
<HelpTOCNode Title="V8ScriptEngine Constructor (V8RuntimeConstraints, V8ScriptEngineFlags, Int32)" Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_3.htm" />
<HelpTOCNode Title="V8ScriptEngine Constructor (String, V8RuntimeConstraints, V8ScriptEngineFlags, Int32)" Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_9.htm" />
</HelpTOCNode>
<HelpTOCNode Id="f5da278c-c245-48ff-91e4-bb7a150ce642" Title="V8ScriptEngine Properties" Url="html/Properties_T_Microsoft_ClearScript_V8_V8ScriptEngine.htm">
<HelpTOCNode Id="79cf4a1f-945a-4931-87c9-0c81bced738b" Title="V8ScriptEngine Properties" Url="html/Properties_T_Microsoft_ClearScript_V8_V8ScriptEngine.htm">
<HelpTOCNode Title="FileNameExtension Property " Url="html/P_Microsoft_ClearScript_V8_V8ScriptEngine_FileNameExtension.htm" />
<HelpTOCNode Title="MaxRuntimeHeapSize Property " Url="html/P_Microsoft_ClearScript_V8_V8ScriptEngine_MaxRuntimeHeapSize.htm" />
<HelpTOCNode Title="MaxRuntimeStackUsage Property " Url="html/P_Microsoft_ClearScript_V8_V8ScriptEngine_MaxRuntimeStackUsage.htm" />
@ -515,9 +536,9 @@
<HelpTOCNode Title="SuppressExtensionMethodEnumeration Property " Url="html/P_Microsoft_ClearScript_V8_V8ScriptEngine_SuppressExtensionMethodEnumeration.htm" />
<HelpTOCNode Title="SuppressInstanceMethodEnumeration Property " Url="html/P_Microsoft_ClearScript_V8_V8ScriptEngine_SuppressInstanceMethodEnumeration.htm" />
</HelpTOCNode>
<HelpTOCNode Id="78163dec-293b-47f1-93f5-eb0eb5b5d2d6" Title="V8ScriptEngine Methods" Url="html/Methods_T_Microsoft_ClearScript_V8_V8ScriptEngine.htm">
<HelpTOCNode Id="aba48aad-5c60-45a6-89c0-002f4dd73866" Title="V8ScriptEngine Methods" Url="html/Methods_T_Microsoft_ClearScript_V8_V8ScriptEngine.htm">
<HelpTOCNode Title="CollectGarbage Method " Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CollectGarbage.htm" />
<HelpTOCNode Id="be124857-f502-4524-8464-7ad230ae953c" Title="Compile Method " Url="html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Compile.htm">
<HelpTOCNode Id="1ee0ea1e-3285-4a86-892c-bdbf39071b32" Title="Compile Method " Url="html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Compile.htm">
<HelpTOCNode Title="Compile Method (String)" Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_3.htm" />
<HelpTOCNode Title="Compile Method (String, String)" Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_6.htm" />
<HelpTOCNode Title="Compile Method (DocumentInfo, String)" Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile.htm" />
@ -528,13 +549,13 @@
<HelpTOCNode Title="Compile Method (String, String, V8CacheKind, Byte[], Boolean)" Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_7.htm" />
<HelpTOCNode Title="Compile Method (DocumentInfo, String, V8CacheKind, Byte[], Boolean)" Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_1.htm" />
</HelpTOCNode>
<HelpTOCNode Id="95d2805e-4f70-4441-81be-13278add31ba" Title="Dispose Method " Url="html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Dispose.htm">
<HelpTOCNode Id="b27bc843-ae43-4dae-b187-32a1860da78e" Title="Dispose Method " Url="html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Dispose.htm">
<HelpTOCNode Title="Dispose Method (Boolean)" Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Dispose.htm" />
</HelpTOCNode>
<HelpTOCNode Id="8f46a6ca-c587-4d94-956e-defea0f458d2" Title="Evaluate Method " Url="html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Evaluate.htm">
<HelpTOCNode Id="750d3e45-6c0c-4c3b-82d0-12231b4cd0fd" Title="Evaluate Method " Url="html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Evaluate.htm">
<HelpTOCNode Title="Evaluate Method (V8Script)" Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Evaluate.htm" />
</HelpTOCNode>
<HelpTOCNode Id="e8c46d0d-5107-403d-8175-20ecf0112ba8" Title="Execute Method " Url="html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Execute.htm">
<HelpTOCNode Id="4d8d1b12-be6f-40b5-909b-0c060ddcb506" Title="Execute Method " Url="html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Execute.htm">
<HelpTOCNode Title="Execute Method (V8Script)" Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Execute.htm" />
</HelpTOCNode>
<HelpTOCNode Title="ExecuteCommand Method " Url="html/M_Microsoft_ClearScript_V8_V8ScriptEngine_ExecuteCommand.htm" />
@ -545,56 +566,61 @@
</HelpTOCNode>
<HelpTOCNode Title="V8ScriptEngineFlags Enumeration" Url="html/T_Microsoft_ClearScript_V8_V8ScriptEngineFlags.htm" />
</HelpTOCNode>
<HelpTOCNode Id="3b4d2342-9923-4340-af90-a405dd010189" Title="Microsoft.ClearScript.Windows" Url="html/N_Microsoft_ClearScript_Windows.htm">
<HelpTOCNode Id="a1ae661a-95cd-445e-9642-d3c0897f73ff" Title="IHostWindow Interface" Url="html/T_Microsoft_ClearScript_Windows_IHostWindow.htm">
<HelpTOCNode Id="a8458648-af33-4a99-8947-5a97bbf3a1c0" Title="IHostWindow Properties" Url="html/Properties_T_Microsoft_ClearScript_Windows_IHostWindow.htm">
<HelpTOCNode Id="85bbdfcd-576c-46d4-8569-f510eb07db4d" Title="Microsoft.ClearScript.Windows" Url="html/N_Microsoft_ClearScript_Windows.htm">
<HelpTOCNode Id="970c9ae0-3307-43b3-aeea-97bc6943d065" Title="IHostWindow Interface" Url="html/T_Microsoft_ClearScript_Windows_IHostWindow.htm">
<HelpTOCNode Id="79a6b236-26cf-4313-b1dd-a65ebd143abf" Title="IHostWindow Properties" Url="html/Properties_T_Microsoft_ClearScript_Windows_IHostWindow.htm">
<HelpTOCNode Title="OwnerHandle Property " Url="html/P_Microsoft_ClearScript_Windows_IHostWindow_OwnerHandle.htm" />
</HelpTOCNode>
<HelpTOCNode Id="025aad23-127c-4638-b50a-e370c8076313" Title="IHostWindow Methods" Url="html/Methods_T_Microsoft_ClearScript_Windows_IHostWindow.htm">
<HelpTOCNode Id="17d6c0b1-b0d0-43f2-8924-e2eb14d18d51" Title="IHostWindow Methods" Url="html/Methods_T_Microsoft_ClearScript_Windows_IHostWindow.htm">
<HelpTOCNode Title="EnableModeless Method " Url="html/M_Microsoft_ClearScript_Windows_IHostWindow_EnableModeless.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="2160f244-959b-481a-b444-4ce65aad5f97" Title="JScriptEngine Class" Url="html/T_Microsoft_ClearScript_Windows_JScriptEngine.htm">
<HelpTOCNode Id="47f51d61-8e90-4918-958f-1cc5de65f6ee" Title="JScriptEngine Constructor " Url="html/Overload_Microsoft_ClearScript_Windows_JScriptEngine__ctor.htm">
<HelpTOCNode Id="f40cae7d-ea9d-41d3-9355-19fed5533eb5" Title="IWindowsScriptObject Interface" Url="html/T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm">
<HelpTOCNode Id="91b52833-c61a-4ba4-9ff2-0871d2dd4439" Title="IWindowsScriptObject Methods" Url="html/Methods_T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm">
<HelpTOCNode Title="GetUnderlyingObject Method " Url="html/M_Microsoft_ClearScript_Windows_IWindowsScriptObject_GetUnderlyingObject.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="0ccf4a2c-d2e0-4367-96e7-9ead993b985b" Title="JScriptEngine Class" Url="html/T_Microsoft_ClearScript_Windows_JScriptEngine.htm">
<HelpTOCNode Id="3f69d1fd-fbd7-474a-ac54-077a82db400c" Title="JScriptEngine Constructor " Url="html/Overload_Microsoft_ClearScript_Windows_JScriptEngine__ctor.htm">
<HelpTOCNode Title="JScriptEngine Constructor " Url="html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor.htm" />
<HelpTOCNode Title="JScriptEngine Constructor (String)" Url="html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_2.htm" />
<HelpTOCNode Title="JScriptEngine Constructor (WindowsScriptEngineFlags)" Url="html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_1.htm" />
<HelpTOCNode Title="JScriptEngine Constructor (String, WindowsScriptEngineFlags)" Url="html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_3.htm" />
<HelpTOCNode Title="JScriptEngine Constructor (String, String, WindowsScriptEngineFlags)" Url="html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_4.htm" />
</HelpTOCNode>
<HelpTOCNode Id="4e80ae36-f499-4dc2-8e18-8e1fdace386a" Title="JScriptEngine Properties" Url="html/Properties_T_Microsoft_ClearScript_Windows_JScriptEngine.htm">
<HelpTOCNode Id="44439617-a059-426b-af1a-e2d527a78635" Title="JScriptEngine Properties" Url="html/Properties_T_Microsoft_ClearScript_Windows_JScriptEngine.htm">
<HelpTOCNode Title="FileNameExtension Property " Url="html/P_Microsoft_ClearScript_Windows_JScriptEngine_FileNameExtension.htm" />
</HelpTOCNode>
<HelpTOCNode Id="84258cbc-ce89-481e-be65-08649521e7f9" Title="JScriptEngine Methods" Url="html/Methods_T_Microsoft_ClearScript_Windows_JScriptEngine.htm">
<HelpTOCNode Id="ab1737be-2161-476a-a5d0-bdf85f7ecf0f" Title="JScriptEngine Methods" Url="html/Methods_T_Microsoft_ClearScript_Windows_JScriptEngine.htm">
<HelpTOCNode Title="ExecuteCommand Method " Url="html/M_Microsoft_ClearScript_Windows_JScriptEngine_ExecuteCommand.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="bc0f32c7-c057-4968-9435-887a0b736da7" Title="VBScriptEngine Class" Url="html/T_Microsoft_ClearScript_Windows_VBScriptEngine.htm">
<HelpTOCNode Id="e592eb11-b429-41e0-8c29-f9d3c6615603" Title="VBScriptEngine Constructor " Url="html/Overload_Microsoft_ClearScript_Windows_VBScriptEngine__ctor.htm">
<HelpTOCNode Id="b6cd8777-8f4f-48cb-8c8e-a763b99f7545" Title="VBScriptEngine Class" Url="html/T_Microsoft_ClearScript_Windows_VBScriptEngine.htm">
<HelpTOCNode Id="42552bf5-5aa3-4583-9c5e-1fab6f2e3ba5" Title="VBScriptEngine Constructor " Url="html/Overload_Microsoft_ClearScript_Windows_VBScriptEngine__ctor.htm">
<HelpTOCNode Title="VBScriptEngine Constructor " Url="html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor.htm" />
<HelpTOCNode Title="VBScriptEngine Constructor (String)" Url="html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_2.htm" />
<HelpTOCNode Title="VBScriptEngine Constructor (WindowsScriptEngineFlags)" Url="html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_1.htm" />
<HelpTOCNode Title="VBScriptEngine Constructor (String, WindowsScriptEngineFlags)" Url="html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_3.htm" />
<HelpTOCNode Title="VBScriptEngine Constructor (String, String, WindowsScriptEngineFlags)" Url="html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_4.htm" />
</HelpTOCNode>
<HelpTOCNode Id="60db7952-ff07-45c0-8e2e-006bcb19d8ca" Title="VBScriptEngine Properties" Url="html/Properties_T_Microsoft_ClearScript_Windows_VBScriptEngine.htm">
<HelpTOCNode Id="56c17ef4-3aaf-4f92-a91e-cdc3b33d8089" Title="VBScriptEngine Properties" Url="html/Properties_T_Microsoft_ClearScript_Windows_VBScriptEngine.htm">
<HelpTOCNode Title="FileNameExtension Property " Url="html/P_Microsoft_ClearScript_Windows_VBScriptEngine_FileNameExtension.htm" />
</HelpTOCNode>
<HelpTOCNode Id="893f0f53-0629-4019-b594-08c22e02bd97" Title="VBScriptEngine Methods" Url="html/Methods_T_Microsoft_ClearScript_Windows_VBScriptEngine.htm">
<HelpTOCNode Id="93924d01-2f89-4c39-aa85-d61686d6ed4d" Title="VBScriptEngine Methods" Url="html/Methods_T_Microsoft_ClearScript_Windows_VBScriptEngine.htm">
<HelpTOCNode Title="ExecuteCommand Method " Url="html/M_Microsoft_ClearScript_Windows_VBScriptEngine_ExecuteCommand.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="ea1d6aa1-26a8-48c4-8428-759d0b8d7a1a" Title="WindowsScriptEngine Class" Url="html/T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm">
<HelpTOCNode Id="22e27665-76f0-4ba0-9acf-29c8df98647a" Title="WindowsScriptEngine Class" Url="html/T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm">
<HelpTOCNode Title="WindowsScriptEngine Constructor " Url="html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine__ctor.htm" />
<HelpTOCNode Id="5b23d698-928e-45da-a81e-454edd349086" Title="WindowsScriptEngine Properties" Url="html/Properties_T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm">
<HelpTOCNode Id="3e26c83f-b919-401a-be56-8266b5c2a567" Title="WindowsScriptEngine Properties" Url="html/Properties_T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm">
<HelpTOCNode Title="Dispatcher Property " Url="html/P_Microsoft_ClearScript_Windows_WindowsScriptEngine_Dispatcher.htm" />
<HelpTOCNode Title="HostWindow Property " Url="html/P_Microsoft_ClearScript_Windows_WindowsScriptEngine_HostWindow.htm" />
<HelpTOCNode Title="Script Property " Url="html/P_Microsoft_ClearScript_Windows_WindowsScriptEngine_Script.htm" />
</HelpTOCNode>
<HelpTOCNode Id="8184f231-46d5-450a-8129-05cbee9c610d" Title="WindowsScriptEngine Methods" Url="html/Methods_T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm">
<HelpTOCNode Id="6361e12c-445e-450f-9add-b9e7e81a2b69" Title="WindowsScriptEngine Methods" Url="html/Methods_T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm">
<HelpTOCNode Title="CheckAccess Method " Url="html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_CheckAccess.htm" />
<HelpTOCNode Title="CollectGarbage Method " Url="html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_CollectGarbage.htm" />
<HelpTOCNode Id="f189f9e6-b567-4b6e-a5c1-68e486669c7e" Title="Dispose Method " Url="html/Overload_Microsoft_ClearScript_Windows_WindowsScriptEngine_Dispose.htm">
<HelpTOCNode Id="782fd117-ef69-4299-bfa9-a529cc8a798f" Title="Dispose Method " Url="html/Overload_Microsoft_ClearScript_Windows_WindowsScriptEngine_Dispose.htm">
<HelpTOCNode Title="Dispose Method (Boolean)" Url="html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_Dispose.htm" />
</HelpTOCNode>
<HelpTOCNode Title="GetStackTrace Method " Url="html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine_GetStackTrace.htm" />

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1 +1 @@
{"heapsizesampleinterval":[24444929,25034757,30146561],"hostitemflags":[2555918,3014670,3211278,3276814,4784142,8323073,8519687,8716289,9043975,9109505,9240577,9306113,9437185,9502727,9568262,9633793,9764871,9830407,10027009,10092551,10158087,10289153,10485761,10682369,10878983,11141121,11272199,11337735,11796487,12845063,13172737,13893639,14811137,18022401,18481153,20119556,20250628,20840452,21692417,30212110,30408718,30736398,31326222,31457294,31588357],"http":[3866625,7536641],"hos":[2097153,15990786,16842753,28835842,31588353],"hosttypecollection":[655363,1441795,2818059,3407877,4128769,5963778,6356994,6553602,6619138,6684674,6815746,7274502,7340034,7405574,7798786,7929862,8454150,9371654,18022401,19660802,19857409,20447235,20971522,23724039,29753345,30801921,31653900],"hosts":[23068673,24051713,25100289,26148865],"hostwindow":[22937601,23920641,24969217,27787269,28835841,30212097,30736385,31326209],"hidedynamicmembers":[31588353],"hierarchy":[25362433,26542081,27590657,27656193,27721729,28049409,28639233,28770305,29229057,29753345,29818881,30081025,30146561,30212097,30277633,30408705,30474241,30539777,30670849,30736385,30801921,31064065,31326209,31457281,31522817,31653889],"helplink":[20381697,21037057,30670849,31064065],"hierarchical":[2818049,3407873,31653889],"halt":[21364737,21889025,22937601,23920641,24641537,24969217,30212097,30408705,30736385,31326209,31457281],"hresult":[20381698,21037058,22478854,25165826,30670850,30932994,31064066],"hostfunctions":[3145730,3473411,3538946,3604482,3670018,3735554,3866626,3932163,4063234,4128809,4194306,4259842,4325378,4390915,4456450,4587522,4653058,4718595,4849666,4915203,4980738,5046275,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701638,5767170,5832706,5898243,6029314,6094850,6160386,6225922,6291458,6422530,6488066,6750210,6881282,7012354,7536642,9568257,18022401,18153474,18350082,19136514,20054018,20512770,21233666,21299202,22151170,23265281,29491201,30801966,31522826],"honor":[24772609],"hands":[31588353],"handled":[7536641],"handler":[1179649,1310721,2490369,3342337,18022401,27721731,29229058],"high":[19988481,29032449],"help":[20381697,21037057,30670849,31064065],"heap":[21364738,23068677,23134209,24051713,24444930,25034754,25100289,25296900,25493506,26083332,26148865,26279940,26935297,27000836,27918337,28573697,30146562,30277636,30474244,31457282],"handle":[3342337,3473409,4128769,7536641,21954561,28835841,29884417,30801921,31522817],"handling":[7536641],"holds":[6488065,8388609,12517377],"htm":[3866625],"hash":[524289,589825,720897,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1769473,1835009,1900545,1966081,2031617,2293761,2555905,3014657,3211265,3276801,3473409,3801089,4128769,4784129,25362433,25624577,26542081,27590657,27656193,27721729,28049409,28639233,28770305,29229057,29753345,29818881,30081025,30146561,30212097,30277633,30408705,30474241,30539777,30670849,30736385,30801921,31064065,31326209,31457281,31522817,31653889],"handlers":[31326209,31457281],"host":[262145,1179649,1310721,1441800,2424836,2490369,2555916,2621443,2686982,2818060,2883597,2949123,3014668,3145734,3211276,3276812,3342337,3407879,3473432,3538947,3670018,3604488,3866631,3932165,3997709,4063238,4128798,4194306,4259842,4325378,4390915,4456451,4587522,4653062,4784140,4849666,4915206,4980738,5046279,5111810,5177346,5242886,5308422,5373958,5439494,5505026,5570566,5636102,5767174,5832710,5898246,5963777,6029314,6094852,6160390,6225928,6291462,6356993,6422535,6488078,6553601,6619137,6684673,6750214,6815745,6881286,7012358,7274497,7340033,7405569,7536648,7733251,7798785,7929857,8126465,8323073,8454145,8519681,8716289,9043969,9109505,9240577,9306113,9371649,9437187,9502721,9568264,9633793,9764865,9830402,10027009,10092545,10158083,10289153,10485763,10682370,10878977,11141122,11206661,11272195,11337729,11796483,12845057,13172739,13893635,14811139,17825795,18022408,18153474,18350082,18481154,18939905,19660804,19857411,20054018,20250632,20512771,20971523,21233666,21299202,21364739,21692418,21889028,22151170,22216707,22937603,23396353,23724037,23920643,24182785,24576001,24969219,25165825,25690115,26476545,27328514,27721730,27983873,28049410,28311554,28442625,28508161,29229058,29491202,30212111,30408720,30736399,30801951,30867458,30932993,31064065,31326223,31391745,31457295,31522840,31588356,31653906],"heapsizelimit":[26083329,26935301,30474241],"hosttypeargs":[2883589,3997701]}
{"heapsizesampleinterval":[24313861,24444929,32112641],"hostitemflags":[2490382,2883598,3145742,3473422,5308430,8585217,8650759,8847367,9043969,9371649,9437185,9502727,9633793,9699329,9764871,9830407,9895937,10289159,10354695,10485761,10551297,10616833,11010055,11337735,11468801,11665415,11730945,11796481,12058631,12255233,12910599,13041670,13893639,19726337,21102593,24707076,25690116,26148869,26673153,28508164,31391758,31719438,31850510,32833550,32899086],"http":[3538945,7602177],"hos":[2031617,17956866,19267585,26148865,32178178],"hosttypecollection":[524291,1441795,2949131,3735553,3801093,6225922,6356998,6488066,6553602,6946818,7077894,7274498,7340034,7471110,7667714,8126470,8257538,8454150,19202049,19595266,21102593,21626883,21757954,21823495,29753356,30343169,31784961],"hosts":[24051713,24903681,30605313,31129601],"hostwindow":[22216705,23134209,24117249,26083333,31391745,32178177,32833537,32899073],"hidedynamicmembers":[26148865],"hierarchy":[27066369,28966913,29097985,29294593,29753345,30081025,30343169,30408705,30867457,31260673,31391745,31457281,31588353,31719425,31784961,31850497,31981569,32047105,32112641,32243713,32309249,32505857,32571393,32768001,32833537,32899073],"helplink":[26804225,27590657,31981569,32243713],"hierarchical":[2949121,3801089,29753345],"halt":[22216705,23134209,24117249,25952257,27525121,28114945,31391745,31719425,31850497,32833537,32899073],"hresult":[20905986,21954566,26804226,27590658,27983874,31981570,32243714],"hostfunctions":[3276802,3342339,3538946,3604482,3670018,3735593,3866626,3997698,4063235,4259842,4325378,4390915,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915203,4980738,5046274,5111810,5177346,5242882,5373954,5439490,5505026,5570562,5636099,5701638,5767170,5832706,5898243,5963778,6029314,6094850,6160386,6291459,6422530,6619138,6684674,6750210,7012354,7536642,7602178,13041665,18284546,18481154,19005442,19333122,20316162,20971522,21102593,21889026,23068674,24641537,25886721,31785006,32768010],"honor":[30932993],"hands":[26148865],"handled":[7602177],"handler":[917505,983041,2555905,3014657,21102593,27066371,28966914],"high":[18743297,28049409],"help":[26804225,27590657,31981569,32243713],"heap":[24051713,24313858,24444930,24903681,25231364,25362436,25821185,26017796,26935297,27918337,28114946,29229060,29622273,30605317,30736386,31129601,31850498,32112642,32309252,32571396],"handle":[3014657,3342337,3735553,7602177,21364737,29163521,31784961,32178177,32768001],"handling":[7602177],"holds":[4521985,8388609,11599873],"htm":[3538945],"hash":[262145,458753,655361,917505,983041,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1769473,1835009,1900545,1966081,2097153,2162689,2490369,2883585,3080193,3145729,3342337,3473409,3735553,5308417,27066369,28966913,29097985,29294593,29753345,30081025,30343169,30408705,30867457,31195137,31260673,31391745,31457281,31588353,31719425,31784961,31850497,31981569,32047105,32112641,32243713,32309249,32505857,32571393,32768001,32833537,32899073],"handlers":[31391745,31850497],"host":[589825,917505,983041,1441800,2490380,2555905,2621444,2818051,2883596,2949132,3014657,3145740,3211267,3276806,3342360,3407885,3473420,3538951,3604482,3670018,3735582,3801095,3866630,3932173,3997699,4063237,4128774,4259846,4325378,4521998,4587522,4653064,4718594,4784131,4849666,4915207,4980740,5046274,5111814,5177346,5242886,5308428,5373954,5439494,5505026,5570566,5636102,5767174,5832710,5898243,5963782,6029314,6094854,6160390,6225921,6291462,6356993,6422536,6488065,6553601,6619142,6684678,6750214,6815747,6946817,7012358,7077889,7274497,7340033,7471105,7536647,7602184,7667713,8126465,8257537,8454145,8585217,8650753,8847361,9043969,9371650,9437185,9502721,9633795,9699329,9764867,9830401,9895937,10158085,10289153,10354691,10420225,10485763,10551297,10616833,11010050,11337729,11468803,11665409,11730945,11796483,12058627,12255234,12910593,13041672,13893635,14811137,18284546,18481154,19005442,19202051,19333122,19595267,19726338,20316162,20643843,20905985,20971522,21102600,21757956,21823493,22216707,23003137,23068675,23134211,23330817,24117251,24379393,24641538,25165827,25296898,25952260,26148868,26214401,26279938,26673154,27066370,27197442,27262977,27983873,28114947,28377091,28508168,28966914,29753362,29949953,30212097,31391759,31522817,31719440,31784991,31850511,32047106,32243713,32768024,32833551,32899087],"heapsizelimit":[25821189,26017793,32571393],"hosttypeargs":[3407877,3932165]}

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1 +1 @@
{"just":[31391745],"jscriptengine":[3014659,15335430,16252934,16777219,16842753,17170438,17432582,18284550,20185095,22937603,24903683,30212108,31326209,31391746],"javascrip":[11206657,23265281,27197441],"jscript":[15335425,16252929,16842754,17170433,17432577,18284546,20185093,29032449,30212102,31391746],"javascript":[327681,393217,917505,983041,1703937,2621441,2818049,2883586,2949121,3145729,3407873,3604481,3866625,3932161,3997697,4063233,4653057,4915201,5046273,5242881,5308417,5373953,5439489,5570561,5636097,5767169,5832705,5898241,6160385,6225921,6291457,6422529,6488065,6750209,6881281,7012353,7536641,8060930,8257538,8847362,8912898,9699330,10223618,10354690,11730946,11927554,19202055,19988483,21430274,22282242,23003138,23789570,24510466,25886724,25952257,26869761,27066371,27459585,28114945,29032452,29294593,30998531,31129602,31195139,31260675,31457281]}
{"just":[31522817],"jscriptengine":[2883587,16121859,16777222,16842758,17629190,17825798,18546694,19267585,22216707,23396359,29818883,31391745,31522818,32833548],"javascrip":[10158081,25886721,32702465],"jscript":[16777217,16842753,17629185,17825794,18546689,19267586,23396357,28049409,31522818,32833542],"javascript":[393217,786433,1048577,1114113,1703937,2818049,2949121,3211265,3276801,3407873,3538945,3801089,3866625,3932162,4063233,4259841,4521985,4653057,4915201,5111809,5242881,5439489,5570561,5636097,5767169,5832705,5963777,6094849,6160385,6291457,6422529,6619137,6684673,6750209,6881282,7012353,7143426,7405570,7536641,7602177,7798786,8192002,8978434,9175042,9240578,10747906,17891335,18743299,21037057,21692417,22478849,22544385,22806530,23265281,23724034,26738690,27787266,28049412,28639235,28704770,29491202,30015491,30801923,31326212,31850497,31916035]}

Просмотреть файл

@ -1 +1 @@
{"keys":[20447233,21168129,24117250,24379399,29753345,30605314,31653889],"kind":[13762561,14745601,15204353,15532033,16056321,16187393,16908289,17235969,17498113,17956865,19595265,22347777,27066369],"key":[4521988,7864326,8192006,8585222,9175046,20381697,21037057,22544390,24117249,30605317,30670849,31064065],"keyword":[11206657],"keyvaluepair":[4521990,24117250,29753352,30605328]}
{"keys":[21626881,25034753,26345474,27131911,29753345,30343169,32636930],"kind":[14155777,14745601,15794177,16056321,16580609,17432577,17760257,18350081,18612225,18808833,19922945,20054017,31916033],"key":[4194308,7929862,7995398,8716294,9109510,25493510,26345473,26804225,27590657,31981569,32243713,32636933],"keyword":[10158081],"keyvaluepair":[4194310,26345474,30343176,32636944]}

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1 +1 @@
{"qualified":[720897,2883585,3997697,6225921,6422529,6553601,6684673,10158081,13172737,13893633,14811137,25624577],"qux":[6488065]}
{"qualified":[655361,3407873,3932161,6422529,6946817,7536641,8257537,10485761,11796481,12058625,13893633,31195137],"qux":[4521985]}

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1 +1 @@
{"usable":[16056321,16187393,17235969,17498113,17956865,19595265],"unrecoverable":[24182785,24576001,26279937,27000833],"usedheapsize":[23134213,26083329,30474241],"uint64":[3473409,4128769,5832710,8060936,8257544,10223624,10354696,11730952,11927560,21430274,22282242,23003138,23134210,24510466,26935298,27918338,28573698,29163522,30801921,31522817],"uri":[2752525,3866630,18612226,19791875,21495816,22413325,25624581],"url":[18677761],"undefined":[2031619,11206659,11862017,12582916,18022402,27590665],"unmanaged":[2555906,3014658,3211266,3276802,4784130,9895939,13041665,16973827,17039363,22085633,22609921,22740993,30212098,30408706,30736386,31326210,31457282],"unless":[13041665],"underlying":[21430273,23789569,25886722,26869762,27459586,28114946,29294594,31129602,31195138,31260674,31457281],"unsigned":[8060933,8257540,8847361,8912897,10223621,10354693,11730948,11927557,13762561,14745601,15204353,15532033,16056321,16187393,16908289,17235969,17498113,17956865,19595265,21430274,22282242,22347777,23003138,23134210,24510466,26935298,27918338,28573698,29163522],"unit":[2162689,2490370,3080193,3538945,5701633,5898241,5963777,6356993,6422529,6553601,6619137,6684673,6946817,7077889,7143425,7208962,7274497,7340033,7471105,7602177,7733249,7798785,7995394,8192002,8323073,8519681,8716289,8847361,8912897,8978434,9043969,9109505,9240577,9306113,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,10027009,10092545,10158081,10289153,10485761,10551298,10616833,10682369,10747906,10878977,11141121,11272193,11337729,11403265,11534337,11599873,11796481,11993089,12124161,12320769,12386305,12582914,12845057,13041668,13107204,13172737,13238273,13565953,13697025,13893633,14024706,14090241,14286852,14417921,14811137,15007746,15073281,15138817,15466497,15859714,15990785,16515076,16580610,16973826,17039362,17301505,17432577,17760258,18546689,18743297,18874372,18939905,19464194,19529730,29622273],"unique":[19005441,19726337,19922945,20643841,21823489,23461889,25362433,26542081,27656193,28770305,29818881,30081025],"uriformatt":[3866626],"uint":[25886721],"unary":[1507329,28639233],"ulong":[8060936,8257544,10223624,10354696,11730952,11927560,21430274,22282242,23003138,23134210,24510466,26935298,27918338,28573698,29163522],"unlike":[31457281],"unchecked":[24182785,24576001],"uriformat":[3866625],"uintptr":[24182791,24576007,26279943,27000839],"unknown":[27590657],"uricomponents":[3866625],"uint32":[3473409,4128769,7012358,30801921,31522817],"usually":[4587521,4849665,5505025,6029313],"unspecified":[11206657],"user":[9961473,10420226,10616834,11206658,11993090,12648449,12713985,13369345,13565953,13631489,13959169,14483457,14548993,14614529,14876673,15204353,15400961,15597569,15663105,15794177,16056321,16121857,16252929,16318465,16449537,16711681,16842753,17104897,17170433,17498113,17629185,17694721,18284545,19070977,19398657,20381697,21037057,22347777,28835841,30670849,31064065],"using":[3866625,5439489,6488065,13107201,14286849,15007745,30605313],"useful":[3932161,4718593,4915201,5242881,5308417,5373953,5570561,5636097,5767169,5832705,6160385,6291457,6488065,6750209,6881281,7012353,24248321,28704769],"unescaped":[3866625],"universal":[27066369],"uint32array":[25886721],"unconditionally":[26279937,27000833],"uint8clampedarray":[25886721],"utility":[18022402,30801921,31522817],"unusable":[13107201,14286849,15007745],"uint8array":[25886721],"uricomponentst":[3866628],"usage":[3801089,4784129,15073282,15138818,19988481,24182787,24576003,26279937,27000833,30146561,30474241,31457281],"uses":[2621441,2818049,2883585,2949121,3407873,3997697,7536641,10485761,11796481,31391745,31457281],"usereflectionbindfallback":[21364737,21889025,22937601,23920641,24969217,28704773,30212097,30408705,30736385,31326209,31457281],"used":[1507329,2293761,2555906,3014658,3211266,3276802,3473414,3538946,3801089,4128774,4456450,4784130,5111809,5439490,6094850,6225922,6422530,9830401,9895937,10420225,10616833,11141121,11206657,11993089,12648449,12713985,13107201,13369345,13631489,13959169,14286849,14483457,14548993,14614529,14876673,15007745,15204353,15400961,15597569,15663105,15794177,16056321,16121857,16252929,16318465,16449537,16711681,16973825,17039361,17104897,17170433,17498113,17629185,17694721,18284545,18350082,19070977,19398657,20512770,21233666,21364737,21889025,22085634,22347777,22609922,22740994,22937601,23134209,23920641,24641537,24969217,26083329,28639233,30146561,30212099,30408707,30474241,30539777,30736387,30801926,31326211,31457283,31522822],"urit":[3866626],"utc":[27066370],"uint16":[3473409,4128769,5767174,30801921,31522817],"ushort":[25886721],"uint16array":[25886721]}
{"usable":[14155777,18350081,18612225,18808833,19922945,20054017],"unrecoverable":[25362433,26214401,29229057,29949953],"usedheapsize":[26017793,29622277,32571393],"uint64":[3342337,3735553,5963782,7143432,8192008,8978440,9175048,9240584,10747912,22806530,23724034,25821186,26935298,27787266,27918338,28704770,28835842,29622274,31784961,32768001],"uri":[2686989,3538950,18022402,20774915,24576008,25559053,31195141],"url":[22151169],"undefined":[1900547,10158083,10944513,13828100,21102594,31457289],"unmanaged":[2424833,2490370,2883586,3145730,3473410,5308418,11075587,13500417,18939906,19136515,19464195,20578305,22020097,24969217,31391746,31719426,31850498,32374785,32833538,32899074],"unless":[13500417],"underlying":[2424833,18939906,21037058,22478850,22544386,23265282,26738689,27787265,29491202,30015490,30801922,31326210,31850497,32374785],"unsigned":[6881281,7143429,7798785,8192005,8978436,9175045,9240580,10747909,14155777,14745601,15794177,16056321,16580609,17432577,17760257,18350081,18612225,18808833,19922945,20054017,22806530,23724034,25821186,26935298,27787266,27918338,28704770,28835842,29622274],"unit":[2228225,2555906,2752513,4784129,5636097,5701633,6225921,6356993,6488065,6553601,6815745,6881281,6946817,7208961,7340033,7405569,7536641,7667713,7733249,7798785,7995394,8060929,8257537,8323074,8519682,8585217,8650753,8781825,8847361,8912897,9043969,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961476,10027009,10092545,10289153,10354689,10485761,10551297,10616833,10682369,10813441,10878978,11010049,11075585,11141121,11337729,11468801,11665409,11730945,11796481,11862018,12058625,12124161,12255233,12451841,12517377,12713985,12910593,13041665,13107201,13172738,13303809,13500420,13697025,13828098,13893633,14352386,14483458,14548993,14811137,14876673,14942212,15663105,16187396,16515073,16711681,16842753,16973825,17039362,17170433,17367042,17694724,17956865,18087938,18677762,18939905,19136514,19464194,19529729,20185090,28770305],"unique":[21233665,22413313,22937601,23461889,23592961,24248321,29097985,30081025,30867457,31260673,31588353,32505857],"uriformatt":[3538946],"uint":[31326209],"unary":[1835009,30408705],"ulong":[7143432,8192008,8978440,9175048,9240584,10747912,22806530,23724034,25821186,26935298,27787266,27918338,28704770,28835842,29622274],"unlike":[31850497],"unchecked":[26214401,29949953],"uriformat":[3538945],"uintptr":[25362439,26214407,29229063,29949959],"unknown":[31457281],"uricomponents":[3538945],"uint32":[3342337,3735553,5832710,31784961,32768001],"usually":[4325377,4849665,5046273,6029313],"unspecified":[10158081],"user":[10092545,10158082,11141122,11206658,11993089,12451842,13238273,13959169,14286849,15073281,15138817,15204353,15532033,15597569,15794177,15859713,15990785,16252929,16318465,16449537,16777217,17104897,17301505,17432577,17563649,17825793,18153473,18219009,18350081,18546689,19267585,19398657,19660801,19791873,19922945,20512769,26804225,27590657,31981569,32178177,32243713],"using":[3538945,4521985,6684673,9961473,16187393,17039361,32636929],"useful":[4063233,4390913,4521985,5111809,5242881,5439489,5570561,5767169,5832705,5963777,6094849,6160385,6291457,6619137,6750209,7012353,23527425,26869761],"unescaped":[3538945],"universal":[31916033],"uint32array":[31326209],"unconditionally":[25362433,29229057],"uint8clampedarray":[31326209],"utility":[21102594,31784961,32768001],"unusable":[9961473,16187393,17039361],"uint8array":[31326209],"uricomponentst":[3538948],"usage":[3080193,5308417,16711682,16973826,18743297,25362433,26214403,29229057,29949955,31850497,32112641,32571393],"uses":[2818049,2949121,3211265,3407873,3801089,3932161,7602177,9633793,10354689,31522817,31850497],"usereflectionbindfallback":[22216705,23134209,23527429,24117249,25952257,28114945,31391745,31719425,31850497,32833537,32899073],"used":[1835009,2162689,2490370,2883586,3080193,3145730,3342342,3473410,3735558,3997698,4784130,4980738,5308418,5373953,6422530,6684674,7536642,9961473,10158081,11010049,11075585,11141121,11206657,11993089,12255233,12451841,13959169,14286849,15073281,15138817,15204353,15532033,15597569,15794177,15859713,15990785,16187393,16252929,16318465,16449537,16777217,17039361,17104897,17301505,17432577,17563649,17825793,18153473,18219009,18350081,18546689,19136513,19333122,19398657,19464193,19660801,19791873,19922945,20316162,20512769,20578306,22020098,22216705,23068674,23134209,24117249,24969218,25952257,26017793,27525121,28114945,29294593,29622273,30408705,31391747,31719427,31784966,31850499,32112641,32571393,32768006,32833539,32899075],"urit":[3538946],"utc":[31916034],"uint16":[3342337,3735553,6619142,31784961,32768001],"ushort":[31326209],"uint16array":[31326209]}

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1 +1 @@
{"widget":[5898241],"writebytes":[327681,393217,917505,983041,1703937,8060933,11927557,25886721,30998529,31129601,31195137,31260673],"www":[3866625],"writable":[7143425,8126465,18415617,29753345,29949953],"web":[7536642,18677761],"wait":[27066369],"windows":[2097153,3014657,3211265,3276801,15335427,15990786,16252930,16449539,16646146,16711685,16777218,16842758,16973826,17170435,17301506,17432578,17629187,17760258,18219011,18284547,18743298,18874370,19070978,19464194,19529730,20185089,20905985,21954561,22085633,22937601,23920641,24772609,24903682,24969217,25821186,26804226,27787266,28442626,28835843,29032451,29884418,30212100,30408705,30736388,31326216,31391747,31588353],"webclientt":[7536642],"writeline":[2621441,4915201,7536643],"windowsscriptengineflags":[15335430,16449542,16711685,16842753,17170438,17629190,18219014,18284550,20185091,20905987,30212099,30736387,31391749],"webclient":[7536644],"weight":[5898241],"windowsscriptengine":[3014662,3211270,3276803,16711685,16842753,16973826,17760259,18743298,18874370,19464194,19529730,22085634,22937603,23920643,24969219,26804226,27787266,28442626,28835841,30212110,30408705,30736398,31326216,31457281],"write":[1703937,6488065,11730949,25886721],"window":[21954561,28835841,29884417],"written":[28049409],"wrapping":[3735553,21364737,21889025,22937601,23265281,23920641,24969217,30212097,30408705,30736385,31326209,31457281],"way":[2883585,11206657],"wrapnullresult":[3735554,23265281,27197441]}
{"widget":[5636097],"writebytes":[393217,786433,1048577,1114113,1703937,7143429,10747909,28639233,29491201,30015489,30801921,31326209],"www":[3538945],"writable":[9568257,10420225,22872065,30343169,30998529],"web":[7602178,22151169],"wait":[31916033],"windows":[2031617,2424833,2883585,3145729,3473409,16121858,16777219,16842754,17170434,17235971,17629187,17694722,17825795,17956866,18087938,18219010,18546690,18677762,18874370,18939906,19136514,19267591,19398659,19529730,19660805,20185090,20512771,20840449,21364737,22020097,22216705,23134209,23396353,24117249,25100290,26083330,26148865,27262978,28049411,29163522,29818882,30670850,30932993,31391752,31522819,31719425,32178179,32374787,32833540,32899076],"webclientt":[7602178],"writeline":[2818049,6291457,7602179],"windowsscriptengineflags":[16777222,17235974,17629190,17825798,19267585,19398662,19660805,20512774,20840451,23396355,31522821,32833539,32899075],"webclient":[7602180],"weight":[5636097],"windowsscriptengine":[2883590,3145734,3473411,17170434,17694722,18087938,18677762,19136514,19267585,19660805,20185091,22020098,22216707,23134211,24117251,25100290,26083330,27262978,31391752,31719425,31850497,32178177,32833550,32899086],"write":[1703937,4521985,9240581,31326209],"window":[21364737,29163521,32178177],"written":[32047105],"wrapping":[4456449,22216705,23134209,24117249,25886721,25952257,28114945,31391745,31719425,31850497,32833537,32899073],"way":[3932161,10158081],"wrapnullresult":[4456450,25886721,32702465]}

Просмотреть файл

@ -1 +1 @@
{"yields":[27066369],"young":[25296897,26148865,30277633],"yield":[2686977,2883585,3997697,9437185,10158081,10485761,11272193,11796481,13172737,13893633,14811137]}
{"yields":[31916033],"young":[24903681,25231361,32309249],"yield":[3407873,3932161,4128769,9633793,9764865,10354689,10485761,11468801,11796481,12058625,13893633]}

Просмотреть файл

@ -1 +1 @@
{"zero":[22478849,25165825,30932993]}
{"zero":[20905985,21954561,27983873]}

Просмотреть файл

@ -1 +1 @@
{"_exception":[7995393,8978433,10747905,14024705]}
{"_exception":[8323073,11862017,13172737,14352385]}

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1 +1 @@
{"button":[2818051,3407875,31653891],"bidirectional":[27066369],"binary":[1507329,28639233],"box":[18677761],"behavior":[1507338,24248321,25362433,27066369,28508161,28639242,28704769],"braces":[2621441,2949121,8519681,8716289,9240577,9633793,9764865,10289153,11337729,12845057,16711681,17629185,18284545],"basic":[1507331,28639235],"binding":[21364737,21889025,22937601,23920641,24969217,26673153,27656193,28377089,28508161,28704772,28770305,29949953,30212097,30408705,30736385,31326209,31457281],"blocked":[26673153,27656193,28770305,29949953],"build":[13762561,14745601,15204353,15532033,16908289,22347777],"blank":[20709378,23986177,26411009],"based":[9568257,21364737,21889025,22937601,23920641,24969217,26673153,27656193,28377089,28704771,28770305,29949953,30212097,30408705,30736385,31326209,31457281],"breaking":[23068673,24051713,25100289,26148865,27852801],"bool":[3538947,3735555,4259843,4325379,4456451,4653059,5177347,7536643,7864324,8126467,8585220,8781827,9175044,9895939,10616835,11206659,12124163,13762563,14090243,14745603,15204355,15532035,15990787,16580612,16908291,16973828,17039364,18743299,19529732,21102596,21561348,22347779,23265285,23658501,23986181,24248325,24313861,25559045,26411013,27328517,27852805,28311557,28508165,28704773,28901381,29491205,29622275,29687813],"base":[9830401,11141121,16842753,18022401,30408705,31326209],"boundary":[5242881,5308417,5373953,5570561,5636097,5767169,5832705,6160385,6291457,6750209,6881281,7012353],"byref":[9175043,13762562,14745602,15204354,15532034,16056322,16187394,16908290,17235970,17498114,17956866,19595266,22347778],"benefit":[27066369],"bytes":[327682,393218,917506,983042,1703938,8060932,10223620,10354692,11927556,22282241,23003137,23068673,23134209,24051713,24182785,24576001,25100289,25886723,25952257,26083333,26148865,26279937,26869761,26935297,27000833,27459585,27918337,28114945,28573697,29163521,29294593,30474245,30998531,31129603,31195139,31260675],"b6d1":[16711681,17629185,18284545],"bar":[2949121,6488065],"baz":[2949121,6488066],"bit":[4063233],"begins":[16646145],"byte":[327683,393219,917507,983043,1703939,3473409,3801094,4128769,4784134,5308422,8060936,8847366,8912902,10223624,10354696,11927560,13762566,14745606,15204358,15532038,16056326,16187398,16908294,17235974,17498118,17956870,19595270,21626886,21757958,22347782,25886725,30146566,30801921,30998531,31129603,31195139,31260675,31457286,31522817],"beginning":[9568257],"bound":[2686977,2883585,3997697,9437185,10158081,10485761,11272193,11796481,13172737,13893633,14811137,26476545,26673153,27656193,27983873,28377089,28442625,28770305,29949953,31326209],"behalf":[21954561,22937601,23920641,24969217,27787265,28835841,29884417,30212097,30736385,31326209,31391745],"boolean":[2555907,3014659,3211267,3276805,3538946,3735554,3801091,4259842,4325378,4456450,4653058,4718593,4784136,5177346,7536642,7864322,8126467,8585218,8781826,9175042,9895941,9961473,10420225,10616835,11010049,11206661,12124162,13762563,14090242,14745603,15204355,15532035,15990786,16056321,16187393,16580610,16908291,16973829,17039365,17235969,17498113,17891329,17956865,18415617,18743298,19529730,19595265,21102594,21561346,21626883,21757955,22085634,22347779,22609921,22740994,23265282,23527425,23592961,23658498,23986178,24248322,24313858,24707073,24838145,25559042,26411010,27328514,27852802,28311554,28508162,28639233,28704770,28901378,29491202,29622274,29687810,29753345,30146563,30212099,30408707,30736387,31326213,31391745,31457288]}
{"button":[2949123,3801091,29753347],"bidirectional":[31916033],"binary":[1835009,30408705],"box":[22151169],"behavior":[1835018,23330817,23527425,26869761,30408714,30867457,31916033],"braces":[2818049,3211265,8847361,9043969,9502721,9699329,9830401,10551297,11730945,12910593,17825793,19660801,20512769],"basic":[1835011,30408707],"binding":[22216705,23134209,23330817,23527428,24117249,25952257,28114945,29097985,29360129,30539777,30998529,31391745,31588353,31719425,31850497,32833537,32899073],"blocked":[29097985,29360129,30998529,31588353],"build":[14745601,15794177,16056321,16580609,17432577,17760257],"blank":[23658498,28573697,30474241],"based":[13041665,22216705,23134209,23527427,24117249,25952257,28114945,29097985,29360129,30539777,30998529,31391745,31588353,31719425,31850497,32833537,32899073],"breaking":[24051713,24903681,30146561,30605313,31129601],"bool":[3997699,4259843,4456451,4587523,4718595,4784131,5505027,7602179,7864323,7929860,8716292,9109508,10158083,10420227,11075587,11141123,11927555,12713987,12779523,12845059,13303811,14483460,14745603,15794179,16056323,16580611,17170435,17432579,17760259,17956867,18087940,19136516,19464196,23199749,23330821,23527429,23986180,24641541,25296901,25886725,26279941,26476549,26542085,26869765,27656197,28246020,28573701,28770307,30146565,30474245,31064069],"base":[11010049,12255233,19267585,21102593,31391745,31719425],"boundary":[5111809,5242881,5439489,5570561,5767169,5832705,5963777,6094849,6160385,6619137,6750209,7012353],"byref":[8716291,14155778,14745602,15794178,16056322,16580610,17432578,17760258,18350082,18612226,18808834,19922946,20054018],"benefit":[31916033],"bytes":[393218,786434,1048578,1114114,1703938,7143428,8192004,9175044,10747908,21037057,21692417,22478849,22544385,22806529,23265281,24051713,24903681,25362433,25821185,26017797,26214401,26935297,27918337,28639235,28704769,28835841,29229057,29491203,29622273,29949953,30015491,30605313,30801923,31129601,31326211,32571397],"b6d1":[17825793,19660801,20512769],"bar":[3211265,4521985],"baz":[3211265,4521986],"bit":[3276801],"begins":[18874369],"byte":[393219,786435,1048579,1114115,1703939,3080198,3342337,3735553,5308422,6094854,6881286,7143432,7798790,8192008,9175048,10747912,14155782,14745606,15794182,16056326,16580614,17432582,17760262,18350086,18612230,18808838,19922950,20054022,23855110,25427974,28639235,29491203,30015491,30801923,31326213,31784961,31850502,32112646,32768001],"beginning":[13041665],"bound":[3407873,3932161,4128769,9633793,9764865,10354689,10485761,11468801,11796481,12058625,13893633,24379393,27262977,29097985,29360129,30212097,30539777,30998529,31391745,31588353],"behalf":[21364737,22216705,23134209,24117249,26083329,29163521,31391745,31522817,32178177,32833537,32899073],"boolean":[2490371,2883587,3080195,3145731,3473413,3997698,4259842,4390913,4456450,4587522,4718594,4784130,5308424,5505026,7602178,7864322,7929858,8716290,9109506,10158085,10420227,11075589,11141123,11206657,11927554,12320769,12713986,12779522,12845058,13238273,13303810,14155777,14483458,14745603,15794179,16056323,16580611,17170434,17432579,17760259,17956866,18087938,18350081,18612225,18808833,19136517,19464197,19922945,20054017,20381697,20447233,20578305,21430273,21495809,22020098,22609921,22872065,23199746,23330818,23527426,23855107,23986178,24641538,24969218,25296898,25427971,25886722,26279938,26476546,26542082,26869762,27656194,28246018,28573698,28770306,30146562,30343169,30408705,30474242,31064066,31391749,31522817,31719427,31850504,32112643,32833539,32899075]}

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,10 +1,10 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>PropertyBag.PropertyChanged Event</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="PropertyChanged event" /><meta name="System.Keywords" content="PropertyBag.PropertyChanged event" /><meta name="Microsoft.Help.F1" content="Microsoft.ClearScript.PropertyBag.PropertyChanged" /><meta name="Microsoft.Help.Id" content="E:Microsoft.ClearScript.PropertyBag.PropertyChanged" /><meta name="Description" content="Occurs when a property is added or replaced, or when the collection is cleared." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="E_Microsoft_ClearScript_PropertyBag_PropertyChanged" /><meta name="guid" content="E_Microsoft_ClearScript_PropertyBag_PropertyChanged" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-1.11.0.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_PropertyBag.htm" title="PropertyBag Class" tocid="T_Microsoft_ClearScript_PropertyBag">PropertyBag Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Events_T_Microsoft_ClearScript_PropertyBag.htm" title="PropertyBag Events" tocid="Events_T_Microsoft_ClearScript_PropertyBag">PropertyBag Events</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm" title="PropertyChanged Event" tocid="E_Microsoft_ClearScript_PropertyBag_PropertyChanged">PropertyChanged Event</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>PropertyBag<span id="LST98366939_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST98366939_0?cpp=::|nu=.");</script>PropertyChanged Event</h1></td></tr></table><span class="introStyle"></span> <div class="summary">
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>PropertyBag.PropertyChanged Event</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="PropertyChanged event" /><meta name="System.Keywords" content="PropertyBag.PropertyChanged event" /><meta name="Microsoft.Help.F1" content="Microsoft.ClearScript.PropertyBag.PropertyChanged" /><meta name="Microsoft.Help.Id" content="E:Microsoft.ClearScript.PropertyBag.PropertyChanged" /><meta name="Description" content="Occurs when a property is added or replaced, or when the collection is cleared." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="E_Microsoft_ClearScript_PropertyBag_PropertyChanged" /><meta name="guid" content="E_Microsoft_ClearScript_PropertyBag_PropertyChanged" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.3.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_PropertyBag.htm" title="PropertyBag Class" tocid="T_Microsoft_ClearScript_PropertyBag">PropertyBag Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Events_T_Microsoft_ClearScript_PropertyBag.htm" title="PropertyBag Events" tocid="Events_T_Microsoft_ClearScript_PropertyBag">PropertyBag Events</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm" title="PropertyChanged Event" tocid="E_Microsoft_ClearScript_PropertyBag_PropertyChanged">PropertyChanged Event</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>PropertyBag<span id="LST98366939_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST98366939_0?cpp=::|nu=.");</script>PropertyChanged Event</h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Occurs when a property is added or replaced, or when the collection is cleared.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="N_Microsoft_ClearScript.htm">Microsoft.ClearScript</a><br />
<strong>Assembly:</strong>
 ClearScript (in ClearScript.dll) Version: 5.5.4.0 (5.5.4.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> event <span class="identifier">PropertyChangedEventHandler</span> <span class="identifier">PropertyChanged</span></pre></div><div id="ID0EDCA_code_Div2" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">Public</span> Event <span class="identifier">PropertyChanged</span> <span class="keyword">As</span> <span class="identifier">PropertyChangedEventHandler</span></pre></div><div id="ID0EDCA_code_Div3" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">public</span>:
 ClearScript (in ClearScript.dll) Version: 5.5.5.0 (5.5.5.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> event <span class="identifier">PropertyChangedEventHandler</span> <span class="identifier">PropertyChanged</span></pre></div><div id="ID0EDCA_code_Div2" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">Public</span> Event <span class="identifier">PropertyChanged</span> <span class="keyword">As</span> <span class="identifier">PropertyChangedEventHandler</span></pre></div><div id="ID0EDCA_code_Div3" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">public</span>:
<span class="keyword">virtual</span> <span class="keyword">event</span> <span class="identifier">PropertyChangedEventHandler</span>^ <span class="identifier">PropertyChanged</span> {
<span class="keyword">void</span> <span class="keyword">add</span> (<span class="identifier">PropertyChangedEventHandler</span>^ <span class="parameter">value</span>);
<span class="keyword">void</span> <span class="keyword">remove</span> (<span class="identifier">PropertyChangedEventHandler</span>^ <span class="parameter">value</span>);

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,4 +1,4 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>PropertyBag Events</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="PropertyBag class, events" /><meta name="Microsoft.Help.Id" content="Events.T:Microsoft.ClearScript.PropertyBag" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="Events_T_Microsoft_ClearScript_PropertyBag" /><meta name="guid" content="Events_T_Microsoft_ClearScript_PropertyBag" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-1.11.0.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_PropertyBag.htm" title="PropertyBag Class" tocid="T_Microsoft_ClearScript_PropertyBag">PropertyBag Class</a></div><div class="toclevel1 current" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Events_T_Microsoft_ClearScript_PropertyBag.htm" title="PropertyBag Events" tocid="Events_T_Microsoft_ClearScript_PropertyBag">PropertyBag Events</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm" title="PropertyChanged Event" tocid="E_Microsoft_ClearScript_PropertyBag_PropertyChanged">PropertyChanged Event</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>PropertyBag Events</h1></td></tr></table><span class="introStyle"></span> <p>The <a href="T_Microsoft_ClearScript_PropertyBag.htm">PropertyBag</a> type exposes the following members.</p><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID0RB')" onkeypress="SectionExpandCollapse_CheckKey('ID0RB', event)" tabindex="0"><img id="ID0RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Events</span></div><div id="ID0RBSection" class="collapsibleSection"><table class="members" id="eventList"><tr><th class="iconColumn">
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>PropertyBag Events</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="PropertyBag class, events" /><meta name="Microsoft.Help.Id" content="Events.T:Microsoft.ClearScript.PropertyBag" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="Events_T_Microsoft_ClearScript_PropertyBag" /><meta name="guid" content="Events_T_Microsoft_ClearScript_PropertyBag" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.3.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_PropertyBag.htm" title="PropertyBag Class" tocid="T_Microsoft_ClearScript_PropertyBag">PropertyBag Class</a></div><div class="toclevel1 current" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Events_T_Microsoft_ClearScript_PropertyBag.htm" title="PropertyBag Events" tocid="Events_T_Microsoft_ClearScript_PropertyBag">PropertyBag Events</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm" title="PropertyChanged Event" tocid="E_Microsoft_ClearScript_PropertyBag_PropertyChanged">PropertyChanged Event</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>PropertyBag Events</h1></td></tr></table><span class="introStyle"></span> <p>The <a href="T_Microsoft_ClearScript_PropertyBag.htm">PropertyBag</a> type exposes the following members.</p><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID0RB')" onkeypress="SectionExpandCollapse_CheckKey('ID0RB', event)" tabindex="0"><img id="ID0RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Events</span></div><div id="ID0RBSection" class="collapsibleSection"><table class="members" id="eventList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubevent.gif" alt="Public event" title="Public event" /></td><td><a href="E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm">PropertyChanged</a></td><td><div class="summary">
Occurs when a property is added or replaced, or when the collection is cleared.

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -10,7 +10,7 @@
<meta name="Language" content="en-us" />
<meta name="Description" content="A general error has occurred" />
<link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" />
<script type="text/javascript" src="../scripts/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="../scripts/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="../scripts/branding-Website.js"></script>
<script type="text/javascript" src="../scripts/clipboard.min.js"></script>
</head>

Просмотреть файл

@ -1,10 +1,10 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DefaultScriptUsageAttribute Constructor </title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.ClearScript.DefaultScriptUsageAttribute.#ctor" /><meta name="Description" content="Initializes a new instance." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor" /><meta name="guid" content="M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-1.11.0.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm" title="DefaultScriptUsageAttribute Class" tocid="T_Microsoft_ClearScript_DefaultScriptUsageAttribute">DefaultScriptUsageAttribute Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm" title="DefaultScriptUsageAttribute Constructor " tocid="Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor">DefaultScriptUsageAttribute Constructor </a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm" title="DefaultScriptUsageAttribute Constructor " tocid="M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor">DefaultScriptUsageAttribute Constructor </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1.htm" title="DefaultScriptUsageAttribute Constructor (ScriptAccess)" tocid="M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1">DefaultScriptUsageAttribute Constructor (ScriptAccess)</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>DefaultScriptUsageAttribute Constructor </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DefaultScriptUsageAttribute Constructor </title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.ClearScript.DefaultScriptUsageAttribute.#ctor" /><meta name="Description" content="Initializes a new instance." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor" /><meta name="guid" content="M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.3.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm" title="DefaultScriptUsageAttribute Class" tocid="T_Microsoft_ClearScript_DefaultScriptUsageAttribute">DefaultScriptUsageAttribute Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm" title="DefaultScriptUsageAttribute Constructor " tocid="Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor">DefaultScriptUsageAttribute Constructor </a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm" title="DefaultScriptUsageAttribute Constructor " tocid="M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor">DefaultScriptUsageAttribute Constructor </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1.htm" title="DefaultScriptUsageAttribute Constructor (ScriptAccess)" tocid="M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1">DefaultScriptUsageAttribute Constructor (ScriptAccess)</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>DefaultScriptUsageAttribute Constructor </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Initializes a new <a href="T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm">DefaultScriptUsageAttribute</a> instance.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="N_Microsoft_ClearScript.htm">Microsoft.ClearScript</a><br />
<strong>Assembly:</strong>
 ClearScript (in ClearScript.dll) Version: 5.5.4.0 (5.5.4.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">DefaultScriptUsageAttribute</span>()</pre></div><div id="ID0EDCA_code_Div2" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">New</span></pre></div><div id="ID0EDCA_code_Div3" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">public</span>:
 ClearScript (in ClearScript.dll) Version: 5.5.5.0 (5.5.5.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">DefaultScriptUsageAttribute</span>()</pre></div><div id="ID0EDCA_code_Div2" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">New</span></pre></div><div id="ID0EDCA_code_Div3" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">public</span>:
<span class="identifier">DefaultScriptUsageAttribute</span>()</pre></div><div id="ID0EDCA_code_Div4" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">new</span> : <span class="keyword">unit</span> <span class="keyword">-&gt;</span> <span class="identifier">DefaultScriptUsageAttribute</span></pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EDCA");</script></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm">DefaultScriptUsageAttribute Class</a></div><div class="seeAlsoStyle"><a href="Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm">DefaultScriptUsageAttribute Overload</a></div><div class="seeAlsoStyle"><a href="N_Microsoft_ClearScript.htm">Microsoft.ClearScript Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"><p>Copyright © Microsoft Corporation. All rights reserved.</p><div class="feedbackLink">Send comments on this topic to
<a id="HT_MailLink" href="mailto:ClearScript%40microsoft.com?Subject=ClearScript Library">Microsoft</a></div>
<script type="text/javascript">

Просмотреть файл

@ -1,10 +1,10 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DefaultScriptUsageAttribute Constructor (ScriptAccess)</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.ClearScript.DefaultScriptUsageAttribute.#ctor(Microsoft.ClearScript.ScriptAccess)" /><meta name="Description" content="Initializes a new instance with the specified default script access setting." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1" /><meta name="guid" content="M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-1.11.0.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm" title="DefaultScriptUsageAttribute Class" tocid="T_Microsoft_ClearScript_DefaultScriptUsageAttribute">DefaultScriptUsageAttribute Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm" title="DefaultScriptUsageAttribute Constructor " tocid="Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor">DefaultScriptUsageAttribute Constructor </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm" title="DefaultScriptUsageAttribute Constructor " tocid="M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor">DefaultScriptUsageAttribute Constructor </a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1.htm" title="DefaultScriptUsageAttribute Constructor (ScriptAccess)" tocid="M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1">DefaultScriptUsageAttribute Constructor (ScriptAccess)</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>DefaultScriptUsageAttribute Constructor (ScriptAccess)</h1></td></tr></table><span class="introStyle"></span> <div class="summary">
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DefaultScriptUsageAttribute Constructor (ScriptAccess)</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.ClearScript.DefaultScriptUsageAttribute.#ctor(Microsoft.ClearScript.ScriptAccess)" /><meta name="Description" content="Initializes a new instance with the specified default script access setting." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1" /><meta name="guid" content="M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.3.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm" title="DefaultScriptUsageAttribute Class" tocid="T_Microsoft_ClearScript_DefaultScriptUsageAttribute">DefaultScriptUsageAttribute Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm" title="DefaultScriptUsageAttribute Constructor " tocid="Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor">DefaultScriptUsageAttribute Constructor </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm" title="DefaultScriptUsageAttribute Constructor " tocid="M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor">DefaultScriptUsageAttribute Constructor </a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1.htm" title="DefaultScriptUsageAttribute Constructor (ScriptAccess)" tocid="M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1">DefaultScriptUsageAttribute Constructor (ScriptAccess)</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>DefaultScriptUsageAttribute Constructor (ScriptAccess)</h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Initializes a new <a href="T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm">DefaultScriptUsageAttribute</a> instance with the specified default script access setting.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="N_Microsoft_ClearScript.htm">Microsoft.ClearScript</a><br />
<strong>Assembly:</strong>
 ClearScript (in ClearScript.dll) Version: 5.5.4.0 (5.5.4.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">DefaultScriptUsageAttribute</span>(
 ClearScript (in ClearScript.dll) Version: 5.5.5.0 (5.5.5.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">DefaultScriptUsageAttribute</span>(
<span class="identifier">ScriptAccess</span> <span class="parameter">access</span>
)</pre></div><div id="ID0EDCA_code_Div2" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">New</span> (
<span class="parameter">access</span> <span class="keyword">As</span> <span class="identifier">ScriptAccess</span>

Просмотреть файл

@ -1,10 +1,10 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DocumentInfo Constructor (String)</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.ClearScript.DocumentInfo.#ctor(System.String)" /><meta name="Description" content="Initializes a new structure with the specified document name." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="M_Microsoft_ClearScript_DocumentInfo__ctor" /><meta name="guid" content="M_Microsoft_ClearScript_DocumentInfo__ctor" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-1.11.0.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_DocumentInfo.htm" title="DocumentInfo Structure" tocid="T_Microsoft_ClearScript_DocumentInfo">DocumentInfo Structure</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Overload_Microsoft_ClearScript_DocumentInfo__ctor.htm" title="DocumentInfo Constructor " tocid="Overload_Microsoft_ClearScript_DocumentInfo__ctor">DocumentInfo Constructor </a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_DocumentInfo__ctor.htm" title="DocumentInfo Constructor (String)" tocid="M_Microsoft_ClearScript_DocumentInfo__ctor">DocumentInfo Constructor (String)</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_DocumentInfo__ctor_1.htm" title="DocumentInfo Constructor (Uri)" tocid="M_Microsoft_ClearScript_DocumentInfo__ctor_1">DocumentInfo Constructor (Uri)</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>DocumentInfo Constructor (String)</h1></td></tr></table><span class="introStyle"></span> <div class="summary">
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DocumentInfo Constructor (String)</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.ClearScript.DocumentInfo.#ctor(System.String)" /><meta name="Description" content="Initializes a new structure with the specified document name." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="M_Microsoft_ClearScript_DocumentInfo__ctor" /><meta name="guid" content="M_Microsoft_ClearScript_DocumentInfo__ctor" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.3.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_DocumentInfo.htm" title="DocumentInfo Structure" tocid="T_Microsoft_ClearScript_DocumentInfo">DocumentInfo Structure</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Overload_Microsoft_ClearScript_DocumentInfo__ctor.htm" title="DocumentInfo Constructor " tocid="Overload_Microsoft_ClearScript_DocumentInfo__ctor">DocumentInfo Constructor </a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_DocumentInfo__ctor.htm" title="DocumentInfo Constructor (String)" tocid="M_Microsoft_ClearScript_DocumentInfo__ctor">DocumentInfo Constructor (String)</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_DocumentInfo__ctor_1.htm" title="DocumentInfo Constructor (Uri)" tocid="M_Microsoft_ClearScript_DocumentInfo__ctor_1">DocumentInfo Constructor (Uri)</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>DocumentInfo Constructor (String)</h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Initializes a new <a href="T_Microsoft_ClearScript_DocumentInfo.htm">DocumentInfo</a> structure with the specified document name.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="N_Microsoft_ClearScript.htm">Microsoft.ClearScript</a><br />
<strong>Assembly:</strong>
 ClearScript (in ClearScript.dll) Version: 5.5.4.0 (5.5.4.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">DocumentInfo</span>(
 ClearScript (in ClearScript.dll) Version: 5.5.5.0 (5.5.5.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">DocumentInfo</span>(
<span class="identifier">string</span> <span class="parameter">name</span>
)</pre></div><div id="ID0EDCA_code_Div2" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">New</span> (
<span class="parameter">name</span> <span class="keyword">As</span> <span class="identifier">String</span>

Просмотреть файл

@ -1,10 +1,10 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DocumentInfo Constructor (Uri)</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.ClearScript.DocumentInfo.#ctor(System.Uri)" /><meta name="Description" content="Initializes a new structure with the specified document URI." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="M_Microsoft_ClearScript_DocumentInfo__ctor_1" /><meta name="guid" content="M_Microsoft_ClearScript_DocumentInfo__ctor_1" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-1.11.0.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_DocumentInfo.htm" title="DocumentInfo Structure" tocid="T_Microsoft_ClearScript_DocumentInfo">DocumentInfo Structure</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Overload_Microsoft_ClearScript_DocumentInfo__ctor.htm" title="DocumentInfo Constructor " tocid="Overload_Microsoft_ClearScript_DocumentInfo__ctor">DocumentInfo Constructor </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_DocumentInfo__ctor.htm" title="DocumentInfo Constructor (String)" tocid="M_Microsoft_ClearScript_DocumentInfo__ctor">DocumentInfo Constructor (String)</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_DocumentInfo__ctor_1.htm" title="DocumentInfo Constructor (Uri)" tocid="M_Microsoft_ClearScript_DocumentInfo__ctor_1">DocumentInfo Constructor (Uri)</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>DocumentInfo Constructor (Uri)</h1></td></tr></table><span class="introStyle"></span> <div class="summary">
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>DocumentInfo Constructor (Uri)</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Microsoft.ClearScript.DocumentInfo.#ctor(System.Uri)" /><meta name="Description" content="Initializes a new structure with the specified document URI." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="M_Microsoft_ClearScript_DocumentInfo__ctor_1" /><meta name="guid" content="M_Microsoft_ClearScript_DocumentInfo__ctor_1" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.3.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_DocumentInfo.htm" title="DocumentInfo Structure" tocid="T_Microsoft_ClearScript_DocumentInfo">DocumentInfo Structure</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Overload_Microsoft_ClearScript_DocumentInfo__ctor.htm" title="DocumentInfo Constructor " tocid="Overload_Microsoft_ClearScript_DocumentInfo__ctor">DocumentInfo Constructor </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_DocumentInfo__ctor.htm" title="DocumentInfo Constructor (String)" tocid="M_Microsoft_ClearScript_DocumentInfo__ctor">DocumentInfo Constructor (String)</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_DocumentInfo__ctor_1.htm" title="DocumentInfo Constructor (Uri)" tocid="M_Microsoft_ClearScript_DocumentInfo__ctor_1">DocumentInfo Constructor (Uri)</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>DocumentInfo Constructor (Uri)</h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Initializes a new <a href="T_Microsoft_ClearScript_DocumentInfo.htm">DocumentInfo</a> structure with the specified document URI.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="N_Microsoft_ClearScript.htm">Microsoft.ClearScript</a><br />
<strong>Assembly:</strong>
 ClearScript (in ClearScript.dll) Version: 5.5.4.0 (5.5.4.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">DocumentInfo</span>(
 ClearScript (in ClearScript.dll) Version: 5.5.5.0 (5.5.5.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">DocumentInfo</span>(
<span class="identifier">Uri</span> <span class="parameter">uri</span>
)</pre></div><div id="ID0EDCA_code_Div2" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">New</span> (
<span class="parameter">uri</span> <span class="keyword">As</span> <span class="identifier">Uri</span>

Просмотреть файл

@ -1,10 +1,10 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>EventConnection(T).disconnect Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="disconnect method" /><meta name="System.Keywords" content="EventConnection%3CT%3E.disconnect method" /><meta name="System.Keywords" content="EventConnection(Of T).disconnect method" /><meta name="Microsoft.Help.F1" content="Microsoft.ClearScript.EventConnection`1.disconnect" /><meta name="Microsoft.Help.Id" content="M:Microsoft.ClearScript.EventConnection`1.disconnect" /><meta name="Description" content="Disconnects the host event source from the script handler function." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="M_Microsoft_ClearScript_EventConnection_1_disconnect" /><meta name="guid" content="M_Microsoft_ClearScript_EventConnection_1_disconnect" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-1.11.0.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_EventConnection_1.htm" title="EventConnection(T) Class" tocid="T_Microsoft_ClearScript_EventConnection_1">EventConnection(T) Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Methods_T_Microsoft_ClearScript_EventConnection_1.htm" title="EventConnection(T) Methods" tocid="Methods_T_Microsoft_ClearScript_EventConnection_1">EventConnection(T) Methods</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_EventConnection_1_disconnect.htm" title="disconnect Method " tocid="M_Microsoft_ClearScript_EventConnection_1_disconnect">disconnect Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>EventConnection<span id="LST9B5462DE_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST9B5462DE_0?cs=&lt;|vb=(Of |cpp=&lt;|fs=&lt;'|nu=(");</script><span class="typeparameter">T</span><span id="LST9B5462DE_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST9B5462DE_1?cs=&gt;|vb=)|cpp=&gt;|fs=&gt;|nu=)");</script><span id="LST9B5462DE_2"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST9B5462DE_2?cpp=::|nu=.");</script>disconnect Method </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>EventConnection(T).disconnect Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="disconnect method" /><meta name="System.Keywords" content="EventConnection%3CT%3E.disconnect method" /><meta name="System.Keywords" content="EventConnection(Of T).disconnect method" /><meta name="Microsoft.Help.F1" content="Microsoft.ClearScript.EventConnection`1.disconnect" /><meta name="Microsoft.Help.Id" content="M:Microsoft.ClearScript.EventConnection`1.disconnect" /><meta name="Description" content="Disconnects the host event source from the script handler function." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="M_Microsoft_ClearScript_EventConnection_1_disconnect" /><meta name="guid" content="M_Microsoft_ClearScript_EventConnection_1_disconnect" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.3.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_EventConnection_1.htm" title="EventConnection(T) Class" tocid="T_Microsoft_ClearScript_EventConnection_1">EventConnection(T) Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Methods_T_Microsoft_ClearScript_EventConnection_1.htm" title="EventConnection(T) Methods" tocid="Methods_T_Microsoft_ClearScript_EventConnection_1">EventConnection(T) Methods</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_EventConnection_1_disconnect.htm" title="disconnect Method " tocid="M_Microsoft_ClearScript_EventConnection_1_disconnect">disconnect Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>EventConnection<span id="LST9B5462DE_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST9B5462DE_0?cs=&lt;|vb=(Of |cpp=&lt;|fs=&lt;'|nu=(");</script><span class="typeparameter">T</span><span id="LST9B5462DE_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST9B5462DE_1?cs=&gt;|vb=)|cpp=&gt;|fs=&gt;|nu=)");</script><span id="LST9B5462DE_2"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST9B5462DE_2?cpp=::|nu=.");</script>disconnect Method </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Disconnects the host event source from the script handler function.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="N_Microsoft_ClearScript.htm">Microsoft.ClearScript</a><br />
<strong>Assembly:</strong>
 ClearScript (in ClearScript.dll) Version: 5.5.4.0 (5.5.4.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">void</span> <span class="identifier">disconnect</span>()</pre></div><div id="ID0EDCA_code_Div2" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">disconnect</span></pre></div><div id="ID0EDCA_code_Div3" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">public</span>:
 ClearScript (in ClearScript.dll) Version: 5.5.5.0 (5.5.5.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">void</span> <span class="identifier">disconnect</span>()</pre></div><div id="ID0EDCA_code_Div2" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">disconnect</span></pre></div><div id="ID0EDCA_code_Div3" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">public</span>:
<span class="keyword">void</span> <span class="identifier">disconnect</span>()</pre></div><div id="ID0EDCA_code_Div4" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">member</span> <span class="identifier">disconnect</span> : <span class="keyword">unit</span> <span class="keyword">-&gt;</span> <span class="keyword">unit</span>
</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EDCA");</script></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="T_Microsoft_ClearScript_EventConnection_1.htm">EventConnection<span id="LST9B5462DE_3"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST9B5462DE_3?cs=&lt;|vb=(Of |cpp=&lt;|nu=(|fs=&lt;'");</script>T<span id="LST9B5462DE_4"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST9B5462DE_4?cs=&gt;|vb=)|cpp=&gt;|nu=)|fs=&gt;");</script> Class</a></div><div class="seeAlsoStyle"><a href="N_Microsoft_ClearScript.htm">Microsoft.ClearScript Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"><p>Copyright © Microsoft Corporation. All rights reserved.</p><div class="feedbackLink">Send comments on this topic to
<a id="HT_MailLink" href="mailto:ClearScript%40microsoft.com?Subject=ClearScript Library">Microsoft</a></div>

Просмотреть файл

@ -1,10 +1,10 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>EventSource(T).connect Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="connect method" /><meta name="System.Keywords" content="EventSource%3CT%3E.connect method" /><meta name="System.Keywords" content="EventSource(Of T).connect method" /><meta name="Microsoft.Help.F1" content="Microsoft.ClearScript.EventSource`1.connect" /><meta name="Microsoft.Help.Id" content="M:Microsoft.ClearScript.EventSource`1.connect(System.Object)" /><meta name="Description" content="Connects the host event source to the specified script handler function." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="M_Microsoft_ClearScript_EventSource_1_connect" /><meta name="guid" content="M_Microsoft_ClearScript_EventSource_1_connect" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-1.11.0.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_EventSource_1.htm" title="EventSource(T) Class" tocid="T_Microsoft_ClearScript_EventSource_1">EventSource(T) Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Methods_T_Microsoft_ClearScript_EventSource_1.htm" title="EventSource(T) Methods" tocid="Methods_T_Microsoft_ClearScript_EventSource_1">EventSource(T) Methods</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_EventSource_1_connect.htm" title="connect Method " tocid="M_Microsoft_ClearScript_EventSource_1_connect">connect Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>EventSource<span id="LST57F6A28_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST57F6A28_0?cs=&lt;|vb=(Of |cpp=&lt;|fs=&lt;'|nu=(");</script><span class="typeparameter">T</span><span id="LST57F6A28_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST57F6A28_1?cs=&gt;|vb=)|cpp=&gt;|fs=&gt;|nu=)");</script><span id="LST57F6A28_2"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST57F6A28_2?cpp=::|nu=.");</script>connect Method </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>EventSource(T).connect Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="connect method" /><meta name="System.Keywords" content="EventSource%3CT%3E.connect method" /><meta name="System.Keywords" content="EventSource(Of T).connect method" /><meta name="Microsoft.Help.F1" content="Microsoft.ClearScript.EventSource`1.connect" /><meta name="Microsoft.Help.Id" content="M:Microsoft.ClearScript.EventSource`1.connect(System.Object)" /><meta name="Description" content="Connects the host event source to the specified script handler function." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="M_Microsoft_ClearScript_EventSource_1_connect" /><meta name="guid" content="M_Microsoft_ClearScript_EventSource_1_connect" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.3.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_EventSource_1.htm" title="EventSource(T) Class" tocid="T_Microsoft_ClearScript_EventSource_1">EventSource(T) Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Methods_T_Microsoft_ClearScript_EventSource_1.htm" title="EventSource(T) Methods" tocid="Methods_T_Microsoft_ClearScript_EventSource_1">EventSource(T) Methods</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_EventSource_1_connect.htm" title="connect Method " tocid="M_Microsoft_ClearScript_EventSource_1_connect">connect Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>EventSource<span id="LST57F6A28_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST57F6A28_0?cs=&lt;|vb=(Of |cpp=&lt;|fs=&lt;'|nu=(");</script><span class="typeparameter">T</span><span id="LST57F6A28_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST57F6A28_1?cs=&gt;|vb=)|cpp=&gt;|fs=&gt;|nu=)");</script><span id="LST57F6A28_2"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST57F6A28_2?cpp=::|nu=.");</script>connect Method </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Connects the host event source to the specified script handler function.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="N_Microsoft_ClearScript.htm">Microsoft.ClearScript</a><br />
<strong>Assembly:</strong>
 ClearScript (in ClearScript.dll) Version: 5.5.4.0 (5.5.4.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">EventConnection</span>&lt;T&gt; <span class="identifier">connect</span>(
 ClearScript (in ClearScript.dll) Version: 5.5.5.0 (5.5.5.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">EventConnection</span>&lt;T&gt; <span class="identifier">connect</span>(
<span class="identifier">Object</span> <span class="parameter">scriptFunc</span>
)</pre></div><div id="ID0EDCA_code_Div2" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">Public</span> <span class="keyword">Function</span> <span class="identifier">connect</span> (
<span class="parameter">scriptFunc</span> <span class="keyword">As</span> <span class="identifier">Object</span>

Просмотреть файл

@ -1,10 +1,10 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>ExtendedHostFunctions Constructor </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="ExtendedHostFunctions class, constructor" /><meta name="System.Keywords" content="ExtendedHostFunctions.ExtendedHostFunctions constructor" /><meta name="Microsoft.Help.F1" content="Microsoft.ClearScript.ExtendedHostFunctions.#ctor" /><meta name="Microsoft.Help.F1" content="Microsoft.ClearScript.ExtendedHostFunctions.ExtendedHostFunctions" /><meta name="Microsoft.Help.Id" content="M:Microsoft.ClearScript.ExtendedHostFunctions.#ctor" /><meta name="Description" content="Initializes a new instance." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="M_Microsoft_ClearScript_ExtendedHostFunctions__ctor" /><meta name="guid" content="M_Microsoft_ClearScript_ExtendedHostFunctions__ctor" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-1.11.0.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_ExtendedHostFunctions.htm" title="ExtendedHostFunctions Class" tocid="T_Microsoft_ClearScript_ExtendedHostFunctions">ExtendedHostFunctions Class</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_ExtendedHostFunctions__ctor.htm" title="ExtendedHostFunctions Constructor " tocid="M_Microsoft_ClearScript_ExtendedHostFunctions__ctor">ExtendedHostFunctions Constructor </a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Methods_T_Microsoft_ClearScript_ExtendedHostFunctions.htm" title="ExtendedHostFunctions Methods" tocid="Methods_T_Microsoft_ClearScript_ExtendedHostFunctions">ExtendedHostFunctions Methods</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>ExtendedHostFunctions Constructor </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>ExtendedHostFunctions Constructor </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="ExtendedHostFunctions class, constructor" /><meta name="System.Keywords" content="ExtendedHostFunctions.ExtendedHostFunctions constructor" /><meta name="Microsoft.Help.F1" content="Microsoft.ClearScript.ExtendedHostFunctions.#ctor" /><meta name="Microsoft.Help.F1" content="Microsoft.ClearScript.ExtendedHostFunctions.ExtendedHostFunctions" /><meta name="Microsoft.Help.Id" content="M:Microsoft.ClearScript.ExtendedHostFunctions.#ctor" /><meta name="Description" content="Initializes a new instance." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="M_Microsoft_ClearScript_ExtendedHostFunctions__ctor" /><meta name="guid" content="M_Microsoft_ClearScript_ExtendedHostFunctions__ctor" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.3.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_ExtendedHostFunctions.htm" title="ExtendedHostFunctions Class" tocid="T_Microsoft_ClearScript_ExtendedHostFunctions">ExtendedHostFunctions Class</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_ExtendedHostFunctions__ctor.htm" title="ExtendedHostFunctions Constructor " tocid="M_Microsoft_ClearScript_ExtendedHostFunctions__ctor">ExtendedHostFunctions Constructor </a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Methods_T_Microsoft_ClearScript_ExtendedHostFunctions.htm" title="ExtendedHostFunctions Methods" tocid="Methods_T_Microsoft_ClearScript_ExtendedHostFunctions">ExtendedHostFunctions Methods</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>ExtendedHostFunctions Constructor </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Initializes a new <a href="T_Microsoft_ClearScript_ExtendedHostFunctions.htm">ExtendedHostFunctions</a> instance.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="N_Microsoft_ClearScript.htm">Microsoft.ClearScript</a><br />
<strong>Assembly:</strong>
 ClearScript (in ClearScript.dll) Version: 5.5.4.0 (5.5.4.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">ExtendedHostFunctions</span>()</pre></div><div id="ID0EDCA_code_Div2" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">New</span></pre></div><div id="ID0EDCA_code_Div3" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">public</span>:
 ClearScript (in ClearScript.dll) Version: 5.5.5.0 (5.5.5.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">ExtendedHostFunctions</span>()</pre></div><div id="ID0EDCA_code_Div2" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">New</span></pre></div><div id="ID0EDCA_code_Div3" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">public</span>:
<span class="identifier">ExtendedHostFunctions</span>()</pre></div><div id="ID0EDCA_code_Div4" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">new</span> : <span class="keyword">unit</span> <span class="keyword">-&gt;</span> <span class="identifier">ExtendedHostFunctions</span></pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EDCA");</script></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="T_Microsoft_ClearScript_ExtendedHostFunctions.htm">ExtendedHostFunctions Class</a></div><div class="seeAlsoStyle"><a href="N_Microsoft_ClearScript.htm">Microsoft.ClearScript Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"><p>Copyright © Microsoft Corporation. All rights reserved.</p><div class="feedbackLink">Send comments on this topic to
<a id="HT_MailLink" href="mailto:ClearScript%40microsoft.com?Subject=ClearScript Library">Microsoft</a></div>
<script type="text/javascript">

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,10 +1,10 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>HostFunctions Constructor </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="HostFunctions class, constructor" /><meta name="System.Keywords" content="HostFunctions.HostFunctions constructor" /><meta name="Microsoft.Help.F1" content="Microsoft.ClearScript.HostFunctions.#ctor" /><meta name="Microsoft.Help.F1" content="Microsoft.ClearScript.HostFunctions.HostFunctions" /><meta name="Microsoft.Help.Id" content="M:Microsoft.ClearScript.HostFunctions.#ctor" /><meta name="Description" content="Initializes a new instance." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="M_Microsoft_ClearScript_HostFunctions__ctor" /><meta name="guid" content="M_Microsoft_ClearScript_HostFunctions__ctor" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-1.11.0.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_HostFunctions.htm" title="HostFunctions Class" tocid="T_Microsoft_ClearScript_HostFunctions">HostFunctions Class</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_HostFunctions__ctor.htm" title="HostFunctions Constructor " tocid="M_Microsoft_ClearScript_HostFunctions__ctor">HostFunctions Constructor </a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Methods_T_Microsoft_ClearScript_HostFunctions.htm" title="HostFunctions Methods" tocid="Methods_T_Microsoft_ClearScript_HostFunctions">HostFunctions Methods</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>HostFunctions Constructor </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>HostFunctions Constructor </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="HostFunctions class, constructor" /><meta name="System.Keywords" content="HostFunctions.HostFunctions constructor" /><meta name="Microsoft.Help.F1" content="Microsoft.ClearScript.HostFunctions.#ctor" /><meta name="Microsoft.Help.F1" content="Microsoft.ClearScript.HostFunctions.HostFunctions" /><meta name="Microsoft.Help.Id" content="M:Microsoft.ClearScript.HostFunctions.#ctor" /><meta name="Description" content="Initializes a new instance." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Microsoft.ClearScript" /><meta name="file" content="M_Microsoft_ClearScript_HostFunctions__ctor" /><meta name="guid" content="M_Microsoft_ClearScript_HostFunctions__ctor" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.3.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">ClearScript Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html\R_Project_Reference.htm" title="ClearScript Library" tocid="roottoc">ClearScript Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/R_Project_Reference.htm" title="ClearScript Library Reference" tocid="R_Project_Reference">ClearScript Library Reference</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/N_Microsoft_ClearScript.htm" title="Microsoft.ClearScript" tocid="N_Microsoft_ClearScript">Microsoft.ClearScript</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/T_Microsoft_ClearScript_HostFunctions.htm" title="HostFunctions Class" tocid="T_Microsoft_ClearScript_HostFunctions">HostFunctions Class</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/M_Microsoft_ClearScript_HostFunctions__ctor.htm" title="HostFunctions Constructor " tocid="M_Microsoft_ClearScript_HostFunctions__ctor">HostFunctions Constructor </a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/Methods_T_Microsoft_ClearScript_HostFunctions.htm" title="HostFunctions Methods" tocid="Methods_T_Microsoft_ClearScript_HostFunctions">HostFunctions Methods</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>HostFunctions Constructor </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Initializes a new <a href="T_Microsoft_ClearScript_HostFunctions.htm">HostFunctions</a> instance.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="N_Microsoft_ClearScript.htm">Microsoft.ClearScript</a><br />
<strong>Assembly:</strong>
 ClearScript (in ClearScript.dll) Version: 5.5.4.0 (5.5.4.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">HostFunctions</span>()</pre></div><div id="ID0EDCA_code_Div2" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">New</span></pre></div><div id="ID0EDCA_code_Div3" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">public</span>:
 ClearScript (in ClearScript.dll) Version: 5.5.5.0 (5.5.5.0)<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EDCA_tab1" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cs','1','4');return false;">C#</a></div><div id="ID0EDCA_tab2" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','vb','2','4');return false;">VB</a></div><div id="ID0EDCA_tab3" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','cpp','3','4');return false;">C++</a></div><div id="ID0EDCA_tab4" class="codeSnippetContainerTab"><a href="#" onclick="javascript:ChangeTab('ID0EDCA','fs','4','4');return false;">F#</a></div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EDCA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EDCA');return false;" title="Copy">Copy</a></div></div><div id="ID0EDCA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">HostFunctions</span>()</pre></div><div id="ID0EDCA_code_Div2" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">Public</span> <span class="keyword">Sub</span> <span class="identifier">New</span></pre></div><div id="ID0EDCA_code_Div3" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">public</span>:
<span class="identifier">HostFunctions</span>()</pre></div><div id="ID0EDCA_code_Div4" class="codeSnippetContainerCode" style="display: none"><pre xml:space="preserve"><span class="keyword">new</span> : <span class="keyword">unit</span> <span class="keyword">-&gt;</span> <span class="identifier">HostFunctions</span></pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EDCA");</script></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="T_Microsoft_ClearScript_HostFunctions.htm">HostFunctions Class</a></div><div class="seeAlsoStyle"><a href="N_Microsoft_ClearScript.htm">Microsoft.ClearScript Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"><p>Copyright © Microsoft Corporation. All rights reserved.</p><div class="feedbackLink">Send comments on this topic to
<a id="HT_MailLink" href="mailto:ClearScript%40microsoft.com?Subject=ClearScript Library">Microsoft</a></div>
<script type="text/javascript">

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше