7 references to GetSignature
PresentationFramework (7)
MS\Internal\WindowsRuntime\Generated\WinRT\GuidGenerator.cs (4)
47var args = type.GetGenericArguments().Select(t => GetSignature(t)); 77var args = type.GetFields(BindingFlags.Instance | BindingFlags.Public).Select(fi => GetSignature(fi.FieldType)); 92return $"rc({TypeExtensions.RemoveNamespacePrefix(type.FullName)};{GetSignature(iface)})"; 132var sig = GetSignature(type);
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IEnumerable.cs (2)
54public static string GetGuidSignature() => GuidGenerator.GetSignature(typeof(IEnumerable<T>)); 213public static string GetGuidSignature() => GuidGenerator.GetSignature(typeof(IEnumerator<T>));
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IReadOnlyList.cs (1)
49public static string GetGuidSignature() => GuidGenerator.GetSignature(typeof(IReadOnlyList<T>));