Właściwość Server.FilestreamLevel
Pobiera poziom dostępu FILESTREAM określone na wystąpienie z SQL Server.
Przestrzeń nazw: Microsoft.SqlServer.Management.Smo
Zestaw: Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)
Składnia
'Deklaracja
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property FilestreamLevel As FileStreamEffectiveLevel
Get
'Użycie
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
Wartość właściwości
Typ: Microsoft.SqlServer.Management.Smo.FileStreamEffectiveLevel
A StreamAccessLevel , który określa typy przesyłania strumieniowego dostępu są włączone na wystąpienie obiektu SQL Server.
Uwagi
Przesyłanie strumieniowe plików mogą być włączone dla Transact-SQL i dostępu pliku Win32.Aby uzyskać więcej informacji, zobacz temat Omówienie FILESTREAM.
Przykłady
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
Zobacz także