Update ref assembly

This commit is contained in:
Steve Sanderson 2019-07-16 13:44:21 +01:00
parent d5a64fb411
commit 6328236187
1 changed files with 10 additions and 10 deletions

View File

@ -828,17 +828,17 @@ namespace Microsoft.AspNetCore.Components.RenderTree
PermutationListEntry = 9,
PermutationListEnd = 10,
}
public enum RenderTreeFrameType
public enum RenderTreeFrameType : short
{
None = 0,
Element = 1,
Text = 2,
Attribute = 3,
Component = 4,
Region = 5,
ElementReferenceCapture = 6,
ComponentReferenceCapture = 7,
Markup = 8,
None = (short)0,
Element = (short)1,
Text = (short)2,
Attribute = (short)3,
Component = (short)4,
Region = (short)5,
ElementReferenceCapture = (short)6,
ComponentReferenceCapture = (short)7,
Markup = (short)8,
}
}
namespace Microsoft.AspNetCore.Components.Routing