Поделиться через


Свойство Server.FilestreamShareName

Gets the Windows share name where FILESTREAM data is stored on the instance of SQL Server.

Пространство имен:  Microsoft.SqlServer.Management.Smo
Сборка:  Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)

Синтаксис

'Декларация
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property FilestreamShareName As String 
    Get
'Применение
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

Значение свойства

Тип: System.String
A String object that specifies the Windows share name where FILESTREAM data is stored on the instance of SQL Server.

Замечания

File streaming can be enabled for Transact-SQL and Win32 file access. For more information, see Общие сведения о FILESTREAM.

Примеры

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

См. также

Справочник

Server Класс

Пространство имен Microsoft.SqlServer.Management.Smo

Другие ресурсы

Использование коллекций

Управление серверами