Definition at line 585 of file Rune.cs.
586 {
588 {
590 {
592 bytesWritten = 1;
593 return true;
594 }
596 {
597 if ((
long)
value.Value <= 2047
L)
598 {
601 bytesWritten = 2;
602 return true;
603 }
605 {
606 if ((
long)value.Value <= 65535
L)
607 {
611 bytesWritten = 3;
612 return true;
613 }
615 {
620 bytesWritten = 4;
621 return true;
622 }
623 }
624 }
625 }
626 bytesWritten = 0;
627 return false;
628 }
References System.destination, System.L, and System.value.