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, PermutationListEntry = 9,
PermutationListEnd = 10, PermutationListEnd = 10,
} }
public enum RenderTreeFrameType public enum RenderTreeFrameType : short
{ {
None = 0, None = (short)0,
Element = 1, Element = (short)1,
Text = 2, Text = (short)2,
Attribute = 3, Attribute = (short)3,
Component = 4, Component = (short)4,
Region = 5, Region = (short)5,
ElementReferenceCapture = 6, ElementReferenceCapture = (short)6,
ComponentReferenceCapture = 7, ComponentReferenceCapture = (short)7,
Markup = 8, Markup = (short)8,
} }
} }
namespace Microsoft.AspNetCore.Components.Routing namespace Microsoft.AspNetCore.Components.Routing