NServiceBus.XmlSerializerCache.GetAllFieldsForType C# (CSharp) Method

GetAllFieldsForType() private method

private GetAllFieldsForType ( Type t ) : System.Reflection.FieldInfo[]
t System.Type
return System.Reflection.FieldInfo[]
        FieldInfo[] GetAllFieldsForType(Type t)
        {
            return t.GetFields(BindingFlags.FlattenHierarchy | BindingFlags.Instance | BindingFlags.Public);
        }