7 references to GetMethodSignature
mscorlib (7)
system\reflection\emit\constructorbuilder.cs (1)
49
sigBytes = m_methodBuilder.
GetMethodSignature
().InternalGetSignature(out sigLength);
system\reflection\emit\methodbuilder.cs (5)
498
SignatureHelper thatSig = ((MethodBuilder)obj).
GetMethodSignature
();
499
if (thatSig.Equals(
GetMethodSignature
())) {
516
sb.Append("Method Signature: " +
GetMethodSignature
() + Environment.NewLine);
784
byte[] sigBytes =
GetMethodSignature
().InternalGetSignature(out sigLength);
1166
return
GetMethodSignature
().ToString();
system\reflection\emit\typebuilder.cs (1)
801
byte[] sigBytes = method.
GetMethodSignature
().InternalGetSignature(out sigLength);