コード例 #1
0
 internal static EditAndContinueLogEntry Row(
     int rowNumber,
     TableIndex table,
     EditAndContinueOperation operation
     )
 {
     return(new EditAndContinueLogEntry(MetadataTokens.Handle(table, rowNumber), operation));
 }
コード例 #2
0
 public void AddEncLogEntry(EntityHandle entity, EditAndContinueOperation code)
 {
     _encLogTable.Add(new EncLogRow
     {
         Token = (uint)MetadataTokens.GetToken(entity),
         FuncCode = (byte)code
     });
 }
コード例 #3
0
 public EditAndContinueLogEntry(EntityHandle handle, EditAndContinueOperation operation)
 {
     Handle    = handle;
     Operation = operation;
 }
コード例 #4
0
 internal static EditAndContinueLogEntry Row(int rowNumber, TableIndex table, EditAndContinueOperation operation)
 {
     return new EditAndContinueLogEntry(MetadataTokens.Handle(table, rowNumber), operation);
 }
コード例 #5
0
 public EditAndContinueLogEntry(Handle handle, EditAndContinueOperation operation)
 {
     this.Handle    = handle;
     this.Operation = operation;
 }