ShareFile 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
ShareFile(FileBase) | |
ShareFile(String) |
使用给定的文件路径初始化类的新实例 ShareFile 。 |
ShareFile(String, String) |
使用给定的文件路径和内容类型初始化类的新实例 ShareFile 。 |
ShareFile(FileBase)
- Source:
- Share.shared.cs
- Source:
- Share.shared.cs
public:
ShareFile(Microsoft::Maui::Storage::FileBase ^ file);
public ShareFile (Microsoft.Maui.Storage.FileBase file);
new Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile : Microsoft.Maui.Storage.FileBase -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile
Public Sub New (file As FileBase)
参数
适用于
ShareFile(String)
- Source:
- Share.shared.cs
- Source:
- Share.shared.cs
使用给定的文件路径初始化类的新实例 ShareFile 。
public:
ShareFile(System::String ^ fullPath);
public ShareFile (string fullPath);
new Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile : string -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile
Public Sub New (fullPath As String)
参数
- fullPath
- String
此对象表示的文件的完整路径。
适用于
ShareFile(String, String)
- Source:
- Share.shared.cs
- Source:
- Share.shared.cs
使用给定的文件路径和内容类型初始化类的新实例 ShareFile 。
public:
ShareFile(System::String ^ fullPath, System::String ^ contentType);
public ShareFile (string fullPath, string contentType);
new Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile : string * string -> Microsoft.Maui.ApplicationModel.DataTransfer.ShareFile
Public Sub New (fullPath As String, contentType As String)
参数
- fullPath
- String
此对象表示的文件的完整路径。
- contentType
- String
文件的显式内容类型(MIME 类型),例如: image/png
。