// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
namespace Microsoft.ClearScript
{
///
/// Represents a method to be called when a document is loaded.
///
/// A structure containing meta-information for the document.
///
/// The callback can modify the document meta-information by specifying or overriding any of
/// its mutable properties.
///
public delegate void DocumentLoadCallback(ref DocumentInfo info);
}