mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
Make more APIs public
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
|
||||
namespace Microsoft.Iris.Data
|
||||
{
|
||||
internal interface IResourceProvider
|
||||
public interface IResourceProvider
|
||||
{
|
||||
Resource GetResource(string hierarchicalPart, string uri, bool forceSynchronous);
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ using System;
|
||||
|
||||
namespace Microsoft.Iris.Data
|
||||
{
|
||||
internal sealed class ResourceManager
|
||||
public sealed class ResourceManager
|
||||
{
|
||||
internal const string ProtocolSeparator = "://";
|
||||
private Vector<ResourceManager.UriRedirect> _redirects;
|
||||
|
||||
@@ -9,7 +9,7 @@ using System.Collections.Generic;
|
||||
|
||||
namespace Microsoft.Iris.Markup
|
||||
{
|
||||
internal static class LoadResultCache
|
||||
public static class LoadResultCache
|
||||
{
|
||||
private static Dictionary<string, LoadResult> s_cache = new Dictionary<string, LoadResult>(InvariantString.OrdinalIgnoreCaseComparer);
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ using System.Runtime.InteropServices;
|
||||
|
||||
namespace Microsoft.Iris.Markup
|
||||
{
|
||||
internal class MarkupCompiler
|
||||
public class MarkupCompiler
|
||||
{
|
||||
private ByteCodeWriter _writer;
|
||||
private MarkupLoadResult _loadResult;
|
||||
|
||||
@@ -21,7 +21,7 @@ namespace Microsoft.Iris.Markup
|
||||
public const string SchemaVersion = "http://schemas.microsoft.com/2007/uix";
|
||||
public const string DataSchemaRootTag = "DataSchema";
|
||||
public const string DataSchemaVersion = "http://schemas.microsoft.com/2007/uixdata";
|
||||
internal static UIXLoadResult UIXGlobal;
|
||||
public static UIXLoadResult UIXGlobal;
|
||||
internal static RootLoadResult RootGlobal;
|
||||
public static bool CompileMode;
|
||||
public static bool TrackAdditionalMetadata;
|
||||
|
||||
@@ -12,7 +12,7 @@ using System.Runtime.Serialization;
|
||||
namespace Microsoft.Iris.Markup
|
||||
{
|
||||
[Serializable]
|
||||
internal class UIXLoadResult : LoadResult
|
||||
public class UIXLoadResult : LoadResult
|
||||
{
|
||||
public UIXLoadResult(string uri)
|
||||
: base(uri)
|
||||
|
||||
Reference in New Issue
Block a user