NServiceBus.XmlSerialization.IsIndexedProperty C# (CSharp) Method

IsIndexedProperty() static private method

static private IsIndexedProperty ( PropertyInfo propertyInfo ) : bool
propertyInfo System.Reflection.PropertyInfo
return bool
        static bool IsIndexedProperty(PropertyInfo propertyInfo)
        {
            return propertyInfo?.GetIndexParameters().Length > 0;
        }