Share via


Propriedade do RDL FilestreamLevel

Obtém o nível de acesso FILESTREAM especificado na instância do SQL Server.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)

Sintaxe

'Declaração
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property FilestreamLevel As FileStreamEffectiveLevel
    Get
'Uso
Dim instance As Server
Dim value As FileStreamEffectiveLevel

value = instance.FilestreamLevel
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public FileStreamEffectiveLevel FilestreamLevel { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property FileStreamEffectiveLevel FilestreamLevel {
    FileStreamEffectiveLevel get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member FilestreamLevel : FileStreamEffectiveLevel
function get FilestreamLevel () : FileStreamEffectiveLevel

Valor da propriedade

Tipo: Microsoft.SqlServer.Management.Smo. . :: . .FileStreamEffectiveLevel
Um objeto StreamAccessLevel que especifica quais tipos de acesso de fluxo são habilitados na instância do SQL Server.

Comentários

File streaming can be enabled for Transact-SQL and Win32 file access. For more information, see Visão geral de FILESTREAM.

Exemplos

C#

Server srv = new Server("(local)");
Console.WriteLine("The file stream access level is: " + srv.FileStreamLevel.ToString());

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
Write-Host "The file stream access level is:" $srv.FileStreamLevel