Właściwość Server.FilestreamShareName
Pobiera Windows udział przechowywania danych FILESTREAM 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 FilestreamShareName As String
Get
'Użycie
Dim instance As Server
Dim value As String
value = instance.FilestreamShareName
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public string FilestreamShareName { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property String^ FilestreamShareName {
String^ get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member FilestreamShareName : string
function get FilestreamShareName () : String
Wartość właściwości
Typ: System.String
A String , który określa Windows udział przechowywania danych FILESTREAM 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 share name that is storing filestream data is: " + srv.FileStreamShareName.ToString());
PowerShell
$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
Write-Host "The share name that is storing filestream data is:" $srv.FileStreamShareName
Zobacz także