2 implementations of TryGetInfoForElementName
Microsoft.Interop.SourceGeneration (2)
MarshallingInfoParser.cs (1)
298
public bool
TryGetInfoForElementName
(AttributeData attrData, string elementName, GetMarshallingInfoCallback marshallingInfoCallback, IElementInfoProvider rootProvider, [NotNullWhen(true)] out TypePositionInfo? info)
MethodSignatureElementInfoProvider.cs (1)
29
public bool
TryGetInfoForElementName
(AttributeData attrData, string elementName, GetMarshallingInfoCallback marshallingInfoCallback, IElementInfoProvider rootProvider, out TypePositionInfo info)
2 references to TryGetInfoForElementName
Microsoft.Interop.SourceGeneration (2)
MarshallingInfoParser.cs (2)
145
return provider.
TryGetInfoForElementName
(attrData, elementName, marshallingInfoCallback, provider, out info);
308
return _innerProvider.
TryGetInfoForElementName
(attrData, elementName, marshallingInfoCallback, rootProvider, out info);