ISite 介面
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
提供網站所需的功能。
public interface class ISite : IServiceProvider
public interface ISite : IServiceProvider
[System.Runtime.InteropServices.ComVisible(true)]
public interface ISite : IServiceProvider
type ISite = interface
interface IServiceProvider
[<System.Runtime.InteropServices.ComVisible(true)>]
type ISite = interface
interface IServiceProvider
Public Interface ISite
Implements IServiceProvider
- 衍生
- 屬性
- 實作
範例
以下範例示範了 、 IComponent和 IContainer 在函式庫容器中的實作ISite。
/// <summary>
/// The following example demonstrates the implementation of
/// ISite, IComponent, and IContainer for use in a simple library container.
///
/// This example uses the System, System.ComponentModel, and System.Collections
/// namespaces.
/// </summary>
//This code segment implements the ISite and IComponent interfaces.
//The implementation of the IContainer interface can be seen in the documentation
//of IContainer.
//Implement the ISite interface.
// The ISBNSite class represents the ISBN name of the book component
class ISBNSite : ISite
{
readonly IComponent m_curComponent;
readonly IContainer m_curContainer;
readonly bool m_bDesignMode;
string m_ISBNCmpName;
public ISBNSite(IContainer actvCntr, IComponent prntCmpnt)
{
m_curComponent = prntCmpnt;
m_curContainer = actvCntr;
m_bDesignMode = false;
m_ISBNCmpName = null;
}
//Support the ISite interface.
public virtual IComponent Component => m_curComponent;
public virtual IContainer Container => m_curContainer;
public virtual bool DesignMode => m_bDesignMode;
public virtual string Name
{
get => m_ISBNCmpName;
set => m_ISBNCmpName = value;
}
//Support the IServiceProvider interface.
public virtual object GetService(Type serviceType) =>
//This example does not use any service object.
null;
}
// The BookComponent class represents the book component of the library container.
// This class implements the IComponent interface.
class BookComponent : IComponent
{
public event EventHandler Disposed;
ISite m_curISBNSite;
public BookComponent(string Title, string Author)
{
m_curISBNSite = null;
Disposed = null;
this.Title = Title;
this.Author = Author;
}
public string Title { get; }
public string Author { get; }
public virtual void Dispose() =>
//There is nothing to clean.
Disposed?.Invoke(this, EventArgs.Empty);
public virtual ISite Site
{
get => m_curISBNSite;
set => m_curISBNSite = value;
}
public override bool Equals(object cmp)
{
BookComponent cmpObj = (BookComponent)cmp;
return Title.Equals(cmpObj.Title) && Author.Equals(cmpObj.Author);
}
public override int GetHashCode() => base.GetHashCode();
}
'The following example demonstrates the implementation of
'ISite, IComponent, and IContainer for use in a simple library container.
'
'This example imports the System, System.ComponentModel, and System.Collections
'namespaces.
'This code segment implements the ISite and IComponent interfaces.
'The implementation of the IContainer interface can be seen in the documentation
'of IContainer.
'Implement the ISite interface.
'The ISBNSite class represents the ISBN name of the book component
Class ISBNSite
Implements ISite
Private m_curComponent As IComponent
Private m_curContainer As IContainer
Private m_bDesignMode As Boolean
Private m_ISBNCmpName As String
Public Sub New(ByVal actvCntr As IContainer, ByVal prntCmpnt As IComponent)
m_curComponent = prntCmpnt
m_curContainer = actvCntr
m_bDesignMode = False
m_ISBNCmpName = Nothing
End Sub
'Support the ISite interface.
Public ReadOnly Property Component() As IComponent Implements ISite.Component
Get
Return m_curComponent
End Get
End Property
Public ReadOnly Property Container() As IContainer Implements ISite.Container
Get
Return m_curContainer
End Get
End Property
Public ReadOnly Property DesignMode() As Boolean Implements ISite.DesignMode
Get
Return m_bDesignMode
End Get
End Property
Public Property Name() As String Implements ISite.Name
Get
Return m_ISBNCmpName
End Get
Set(ByVal Value As String)
m_ISBNCmpName = Value
End Set
End Property
'Support the IServiceProvider interface.
Public Function GetService(ByVal serviceType As Type) As Object Implements IServiceProvider.GetService
'This example does not use any service object.
GetService = Nothing
End Function
End Class
'The BookComponent class represents the book component of the library container.
Class BookComponent
Implements IComponent
Public Event Disposed As EventHandler Implements IComponent.Disposed
Private m_curISBNSite As ISite
Private m_bookTitle As String
Private m_bookAuthor As String
Public Sub New(ByVal Title As String, ByVal Author As String)
m_curISBNSite = Nothing
m_bookTitle = Title
m_bookAuthor = Author
End Sub
Public ReadOnly Property Title() As String
Get
Return m_bookTitle
End Get
End Property
Public ReadOnly Property Author() As String
Get
Return m_bookAuthor
End Get
End Property
Public Sub Dispose() Implements IDisposable.Dispose
'There is nothing to clean.
RaiseEvent Disposed(Me, EventArgs.Empty)
End Sub
Public Property Site() As ISite Implements IComponent.Site
Get
Return m_curISBNSite
End Get
Set(ByVal Value As ISite)
m_curISBNSite = Value
End Set
End Property
Public Overloads Function Equals(ByVal cmp As Object) As Boolean
Dim cmpObj As BookComponent = CType(cmp, BookComponent)
If (Me.Title.Equals(cmpObj.Title) And Me.Author.Equals(cmpObj.Author)) Then
Equals = True
Else
Equals = False
End If
End Function
Public Overrides Function GetHashCode() As Integer
GetHashCode = MyBase.GetHashCode()
End Function
End Class
備註
網站將 a Component 綁定到 a Container ,並使它們之間的通訊成為可能,同時也提供容器管理其元件的方式。
站點也可以作為容器特定、每個元件資訊的儲存庫,例如元件名稱。
給實施者的注意事項
要成為一個站點,類別必須實作該 ISite 介面。
屬性
| 名稱 | Description |
|---|---|
| Component |
當類別實作時,會取得與 相關 ISite 聯的元件。 |
| Container |
當類別實作時,會與 IContainer 相關聯 ISite 。 |
| DesignMode |
判斷元件在由類別實作時是否處於設計模式。 |
| Name |
當類別實作時,取得或設定與 ISite 相關聯的元件名稱。 |
方法
| 名稱 | Description |
|---|---|
| GetService(Type) |
取得指定型別的服務物件。 (繼承來源 IServiceProvider) |