3 implementations of TryGetInfoForElementName
Microsoft.Interop.SourceGeneration (3)
EmptyElementInfoProvider.cs (1)
22
public bool
TryGetInfoForElementName
(AttributeData attrData, string elementName, GetMarshallingInfoCallback marshallingInfoCallback, IElementInfoProvider rootProvider, out TypePositionInfo info)
MarshallingInfoParser.cs (1)
300
public bool
TryGetInfoForElementName
(AttributeData attrData, string elementName, GetMarshallingInfoCallback marshallingInfoCallback, IElementInfoProvider rootProvider, [NotNullWhen(true)] out TypePositionInfo? info)
MethodSignatureElementInfoProvider.cs (1)
30
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)
146
return provider.
TryGetInfoForElementName
(attrData, elementName, marshallingInfoCallback, provider, out info);
310
return _innerProvider.
TryGetInfoForElementName
(attrData, elementName, marshallingInfoCallback, rootProvider, out info);