Update ref assembly
This commit is contained in:
parent
d5a64fb411
commit
6328236187
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue