Skip to content

Commit 6a3d165

Browse files
authored
Merge pull request #8345 from MicrosoftDocs/rjc-mime-correction
Correct case of "mime" to "MIME"
2 parents 913d8f5 + cc86371 commit 6a3d165

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

powerapps-docs/developer/data-platform/files-images-overview.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Dataverse provides several different ways to save binary data representing files
3535

3636
## Block certain types of files
3737

38-
You can block the types of files that can be uploaded by the extension or mime type.
38+
You can block the types of files that can be uploaded by the extension or MIME type.
3939

4040
### Block files by extension
4141

@@ -111,9 +111,9 @@ When anyone tries to upload a file using one of the blocked types, the following
111111
> Number: `-2147205623`<br />
112112
> Message: `The attachment is either not a valid type or is too large. It cannot be uploaded or downloaded.`
113113
114-
### Block or allow certain mime types
114+
### Block or allow certain MIME types
115115

116-
You can block or allow upload of files based on mime types. More Information: [Mime Type Validation](/power-platform/admin/settings-privacy-security#mime-type-validation).
116+
You can block or allow upload of files based on MIME types. More Information: [Mime Type Validation](/power-platform/admin/settings-privacy-security#mime-type-validation).
117117

118118
You can also query and modify this data programmatically. It's stored in the [Organization.BlockedMimeTypes](reference/entities/organization.md#BKMK_BlockedMimeTypes) and [Organization.AllowedMimeTypes](reference/entities/organization.md#BKMK_AllowedMimeTypes) columns. There's only one row in the organization table. You can use the SDK or Web API to query this data:
119119

@@ -165,15 +165,15 @@ OData-Version: 4.0
165165
}
166166
```
167167

168-
If `allowedmimetypes` is set, `blockedmimetypes` is ignored. Only the mime types specified in `allowedmimetypes` are allowed.
168+
If `allowedmimetypes` is set, `blockedmimetypes` is ignored. Only the MIME types specified in `allowedmimetypes` are allowed.
169169

170-
If `blockedmimetypes` isn't empty and `allowedmimetypes` is empty, the following error occurs when someone tries to upload a mime type that is in blocked mime types:
170+
If `blockedmimetypes` isn't empty and `allowedmimetypes` is empty, the following error occurs when someone tries to upload a MIME type that is in blocked MIME types:
171171

172172
> Name: `MimeTypeBlocked`<br />
173173
> Code: `0x80072522`<br />
174174
> Message: `Operation not allowed as mime type image/svg+xml is blocked.`
175175
176-
If `allowedmimetypes` isn't empty, the following error occurs when someone tries to upload a mime type that isn't in `allowedmimetypes`:
176+
If `allowedmimetypes` isn't empty, the following error occurs when someone tries to upload a MIME type that isn't in `allowedmimetypes`:
177177

178178
> Name: `MimeTypeNotInAllowedList`<br />
179179
> Code: `0x80072521`<br />

0 commit comments

Comments
 (0)