public static ContentTypePartDefinitionBuilder ContainedContentTypes(this ContentTypePartDefinitionBuilder builder, string[] containedContentTypes)
 {
     //return builder.WithSetting("ContainedContentTypes", containedContentTypes);
     return(builder.WithSettings(new ProjectionPartSettings()
     {
         ContainedContentTypes = containedContentTypes
     }));
 }
Beispiel #2
0
 public static ContentTypePartDefinitionBuilder ContainedContentTypes(this ContentTypePartDefinitionBuilder builder, string[] containedContentTypes)
 {
     return(builder.WithSettings(containedContentTypes));
 }