Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: BDC model schema reference for SharePoint
description: Contains reference documentation for the BDC model schema (BDCMetadata.xsd), which you can use to create external content types in SharePoint.
ms.date: 09/25/2017
ms.date: 04/16/2026
ms.assetid: 979a5ffc-f033-4e72-b2d1-11d8cb1b294a
ms.localizationpriority: medium
---
Expand All @@ -20,7 +20,7 @@ Contains reference documentation for the BDC model schema (BDCMetadata.xsd), whi

Contains an access control entry (ACE) that specifies access rights for the parent element.

See [Business Connectivity Services security overview](https://technet.microsoft.com/library/ee661734%28office.14%29.aspx) to learn more about the Business Connectivity Services and security.
See [Business Connectivity Services security overview](https://learn.microsoft.com/en-us/previous-versions/office/sharepoint-foundation-2010/ee661734(v=office.14)) to learn more about the Business Connectivity Services and security.

**Namespace:** `http://schemas.microsoft.com/windows/2007/BusinessDataCatalog`

Expand Down Expand Up @@ -1869,7 +1869,7 @@ The following two cases in a BDC model result in an [InvalidOperationException]


```XML
<MethodInstance Type = "Strig" Default = "Boolean" ReturnParameterName = "String" ReturnTypeDescriptorName = "String" ReturnTypeDescriptorLevel = "Integer" Name = "String" DefaultDisplayName = "String" IsCached = "Boolean"> </MethodInstance>
<MethodInstance Type = "String" Default = "Boolean" ReturnParameterName = "String" ReturnTypeDescriptorName = "String" ReturnTypeDescriptorLevel = "Integer" Name = "String" DefaultDisplayName = "String" IsCached = "Boolean"> </MethodInstance>
```

The following sections describe attributes, child elements, and parent elements.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Embed images, videos, and documents in posts in SharePoint
description: Learn how to add SocialAttachment objects to microblog posts, which render as embedded pictures, videos, and documents in SharePoint social feeds.
ms.date: 09/25/2017
ms.date: 04/16/2026
ms.assetid: 9927b9e7-daea-4261-80fa-4cc25f489e22
ms.localizationpriority: medium
---
Expand All @@ -11,6 +11,9 @@ ms.localizationpriority: medium

Learn how to add [SocialAttachment](https://msdn.microsoft.com/library/Microsoft.SharePoint.Client.Social.SocialAttachment.aspx) objects to microblog posts, which render as embedded pictures, videos, and documents in SharePoint social feeds.

> [!IMPORTANT]
> This article applies to classic SharePoint Server social feed (microblogging) features. These APIs are not used in modern SharePoint experiences and are not available in SharePoint Online modern sites.

In a social feed, the simplest form of post content contains only text, but you can also add embedded pictures, videos, and documents. To do this, you use the [Attachment](https://msdn.microsoft.com/library/Microsoft.SharePoint.Client.Social.SocialPostCreationData.Attachment.aspx) property on the [SocialPostCreationData](https://msdn.microsoft.com/library/Microsoft.SharePoint.Client.Social.SocialPostCreationData.aspx) object that defines the post. Posts can contain one attachment, which is represented by a [SocialAttachment](https://msdn.microsoft.com/library/Microsoft.SharePoint.Client.Social.SocialAttachment.aspx) object.

> [!NOTE]
Expand Down Expand Up @@ -40,7 +43,7 @@ The code examples in this article show how to add image, video, and document att
- Microsoft.SharePoint.Client.Runtime


- Microsoft.SharePoint.Client.UserProfilies
- Microsoft.SharePoint.Client.UserProfiles


To use the examples in this article, you'll need to upload an image, a video, and a document. To use the video example, the video feature must be enabled on the server and the video file must be stored in an asset library. To use the document example in an on-premises environment, Office Online must be configured in the environment. For more information, see [Plan digital asset libraries in SharePoint](https://technet.microsoft.com/library/ee414275.aspx) and [Configure SharePoint to use Office Online](https://technet.microsoft.com/library/ff431687.aspx).
Expand Down