net9.0-ios17.2
namespace FileProvider
{
    [Protocol(Name = "NSFileProviderItem", WrapperType = typeof(NSFileProviderItemWrapper))]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "GetContentType", ReturnType = typeof(UTType), Selector = "contentType")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "GetCapabilities", ReturnType = typeof(NSFileProviderItemCapabilities), Selector = "capabilities")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "GetDocumentSize", ReturnType = typeof(NSNumber), Selector = "documentSize")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "GetChildItemCount", ReturnType = typeof(NSNumber), Selector = "childItemCount")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "GetCreationDate", ReturnType = typeof(NSDate), Selector = "creationDate")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "GetContentModificationDate", ReturnType = typeof(NSDate), Selector = "contentModificationDate")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "GetLastUsedDate", ReturnType = typeof(NSDate), Selector = "lastUsedDate")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "GetTagData", ReturnType = typeof(NSData), Selector = "tagData")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "GetFavoriteRank", ReturnType = typeof(NSNumber), Selector = "favoriteRank")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "IsTrashed", ReturnType = typeof(bool), Selector = "isTrashed")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "IsUploaded", ReturnType = typeof(bool), Selector = "isUploaded")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "IsUploading", ReturnType = typeof(bool), Selector = "isUploading")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "GetUploadingError", ReturnType = typeof(NSError), Selector = "uploadingError")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "IsDownloaded", ReturnType = typeof(bool), Selector = "isDownloaded")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "IsDownloading", ReturnType = typeof(bool), Selector = "isDownloading")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "GetDownloadingError", ReturnType = typeof(NSError), Selector = "downloadingError")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "IsMostRecentVersionDownloaded", ReturnType = typeof(bool), Selector = "isMostRecentVersionDownloaded")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "IsShared", ReturnType = typeof(bool), Selector = "isShared")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "IsSharedByCurrentUser", ReturnType = typeof(bool), Selector = "isSharedByCurrentUser")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "GetOwnerNameComponents", ReturnType = typeof(NSPersonNameComponents), Selector = "ownerNameComponents")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "GetMostRecentEditorNameComponents", ReturnType = typeof(NSPersonNameComponents), Selector = "mostRecentEditorNameComponents")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "GetVersionIdentifier", ReturnType = typeof(NSData), Selector = "versionIdentifier")]
    [ProtocolMember(IsProperty = false, IsRequired = false, IsStatic = false, Name = "GetUserInfo", ReturnType = typeof(NSDictionary), Selector = "userInfo")]
    [ProtocolMember(ArgumentSemantic = ArgumentSemantic.None, GetterSelector = "itemIdentifier", IsProperty = true, IsRequired = true, IsStatic = false, Name = "Identifier", PropertyType = typeof(string), Selector = "itemIdentifier")]
    [ProtocolMember(ArgumentSemantic = ArgumentSemantic.None, GetterSelector = "parentItemIdentifier", IsProperty = true, IsRequired = true, IsStatic = false, Name = "ParentIdentifier", PropertyType = typeof(string), Selector = "parentItemIdentifier")]
    [ProtocolMember(ArgumentSemantic = ArgumentSemantic.None, GetterSelector = "filename", IsProperty = true, IsRequired = true, IsStatic = false, Name = "Filename", PropertyType = typeof(string), Selector = "filename")]
    [ProtocolMember(ArgumentSemantic = ArgumentSemantic.None, GetterSelector = "typeIdentifier", IsProperty = true, IsRequired = false, IsStatic = false, Name = "TypeIdentifier", PropertyType = typeof(string), Selector = "typeIdentifier")]
    [ProtocolMember(ArgumentSemantic = ArgumentSemantic.None, GetterSelector = "fileSystemFlags", IsProperty = true, IsRequired = false, IsStatic = false, Name = "FileSystemFlags", PropertyType = typeof(NSFileProviderFileSystemFlags), Selector = "fileSystemFlags")]
    [ProtocolMember(ArgumentSemantic = ArgumentSemantic.Retain, GetterSelector = "extendedAttributes", IsProperty = true, IsRequired = false, IsStatic = false, Name = "ExtendedAttributes", PropertyType = typeof(NSDictionary<NSString, NSData>), Selector = "extendedAttributes")]
    [ProtocolMember(ArgumentSemantic = ArgumentSemantic.Retain, GetterSelector = "itemVersion", IsProperty = true, IsRequired = false, IsStatic = false, Name = "ItemVersion", PropertyType = typeof(NSFileProviderItemVersion), Selector = "itemVersion")]
    [ProtocolMember(ArgumentSemantic = ArgumentSemantic.None, GetterSelector = "symlinkTargetPath", IsProperty = true, IsRequired = false, IsStatic = false, Name = "SymlinkTargetPath", PropertyType = typeof(string), Selector = "symlinkTargetPath")]
    [ProtocolMember(ArgumentSemantic = ArgumentSemantic.None, GetterSelector = "typeAndCreator", IsProperty = true, IsRequired = false, IsStatic = false, Name = "TypeAndCreator", PropertyType = typeof(NSFileProviderTypeAndCreator), Selector = "typeAndCreator")]
    [ProtocolMember(ArgumentSemantic = ArgumentSemantic.None, GetterSelector = "contentPolicy", IsProperty = true, IsRequired = false, IsStatic = false, Name = "ContentPolicy", PropertyType = typeof(NSFileProviderContentPolicy), Selector = "contentPolicy")]
    [SupportedOSPlatform("ios")]
    [SupportedOSPlatform("macos")]
    [UnsupportedOSPlatform("maccatalyst")]
    public interface INSFileProviderItem : INativeObject, IDisposable
    {
        [Preserve(Conditional = true)]
        string! Identifier
        {
            [Export("itemIdentifier")]
            get;
        }

    }
}
nuget.org
0.0 %
Reference this API
.NET 6.07.08.09.0
Information specific to net9.0
Platforms This API is only available when you target a specific platform:
iOS 10.010.110.210.311.011.111.211.311.412.012.112.212.312.413.013.113.213.313.413.513.614.014.114.214.314.414.515.015.215.416.016.116.216.417.017.2
macOS 10.1410.1510.1611.011.111.211.312.012.112.313.013.113.314.014.2
Information specific to net9.0-ios17.2
Assembly

Microsoft.iOS , Version=17.2.0.0, PublicKeyToken=84e04ff9cfb79065

Referencing

The API is automatically referenced.

Platform Restrictions

The property getter is only supported on the following platforms:

  • iOS
  • macOS
  • Built-in API
  • Package-provided API

05/11/2024
An error has occurred. This application may no longer respond until reloaded. Reload 🗙