共用方式為


ITextTemplatingSession 介面

可以用來將資訊從指示詞處理器傳輸至文字範本。

命名空間:  Microsoft.VisualStudio.TextTemplating
組件:  Microsoft.VisualStudio.TextTemplating.Interfaces.10.0 (在 Microsoft.VisualStudio.TextTemplating.Interfaces.10.0.dll 中)

語法

'宣告
<CLSCompliantAttribute(True)> _
Public Interface ITextTemplatingSession _
    Inherits IEquatable(Of ITextTemplatingSession), IEquatable(Of Guid),  _
    IDictionary(Of String, Object), ICollection(Of KeyValuePair(Of String, Object)),  _
    IEnumerable(Of KeyValuePair(Of String, Object)), IEnumerable,  _
    ISerializable
[CLSCompliantAttribute(true)]
public interface ITextTemplatingSession : IEquatable<ITextTemplatingSession>, 
    IEquatable<Guid>, IDictionary<string, Object>, ICollection<KeyValuePair<string, Object>>, 
    IEnumerable<KeyValuePair<string, Object>>, IEnumerable, ISerializable
[CLSCompliantAttribute(true)]
public interface class ITextTemplatingSession : IEquatable<ITextTemplatingSession^>, 
    IEquatable<Guid>, IDictionary<String^, Object^>, 
    ICollection<KeyValuePair<String^, Object^>>, IEnumerable<KeyValuePair<String^, Object^>>, 
    IEnumerable, ISerializable
[<CLSCompliantAttribute(true)>]
type ITextTemplatingSession =  
    interface
        interface IEquatable<ITextTemplatingSession>
        interface IEquatable<Guid>
        interface IDictionary<string, Object>
        interface ICollection<KeyValuePair<string, Object>>
        interface IEnumerable<KeyValuePair<string, Object>>
        interface IEnumerable
        interface ISerializable
    end
public interface ITextTemplatingSession extends IEquatable<ITextTemplatingSession>, IEquatable<Guid>, IDictionary<String, Object>, ICollection<KeyValuePair<String, Object>>, IEnumerable<KeyValuePair<String, Object>>, IEnumerable, ISerializable

ITextTemplatingSession 型別會公開下列成員。

屬性

  名稱 說明
公用屬性 Count 取得 ICollection<T> 中所包含的元素數。 (繼承自 ICollection<KeyValuePair<String, Object>>)。
公用屬性 Id 這個工作階段的識別,用來依據值來比較工作階段執行個體。
公用屬性 IsReadOnly 取得值,指出 ICollection<T> 是否唯讀。 (繼承自 ICollection<KeyValuePair<String, Object>>)。
公用屬性 Item 取得或設定具有指定索引鍵的元素。 (繼承自 IDictionary<String, Object>)。
公用屬性 Keys 取得 ICollection<T>,包含 IDictionary<TKey, TValue> 的索引鍵。 (繼承自 IDictionary<String, Object>)。
公用屬性 Values 取得 ICollection<T>,包含 IDictionary<TKey, TValue> 中的值。 (繼承自 IDictionary<String, Object>)。

回頁首

方法

  名稱 說明
公用方法 Add(T) 將項目加入至 ICollection<T>。 (繼承自 ICollection<KeyValuePair<String, Object>>)。
公用方法 Add(TKey, TValue) 將具有提供索引鍵和值的元素加入至 IDictionary<TKey, TValue>。 (繼承自 IDictionary<String, Object>)。
公用方法 Clear 將所有項目從 ICollection<T> 移除。 (繼承自 ICollection<KeyValuePair<String, Object>>)。
公用方法 Contains 判斷 ICollection<T> 是否包含特定值。 (繼承自 ICollection<KeyValuePair<String, Object>>)。
公用方法 ContainsKey 判斷 IDictionary<TKey, TValue> 是否包含具有指定之索引鍵的項目。 (繼承自 IDictionary<String, Object>)。
公用方法 CopyTo 從特定的 Array 索引開始,複製 ICollection<T> 項目至 Array。 (繼承自 ICollection<KeyValuePair<String, Object>>)。
公用方法 Equals(T) 指出目前的物件是否等於另一個具有相同型別的物件。 (繼承自 IEquatable<Guid>)。
公用方法 Equals(T) (繼承自 IEquatable<ITextTemplatingSession>)。
公用方法 GetEnumerator() 傳回可逐一查看集合的列舉程式。 (繼承自 IEnumerable<KeyValuePair<String, Object>>)。
公用方法 GetEnumerator() 傳回會逐一查看集合的列舉程式。 (繼承自 IEnumerable)。
公用方法 GetObjectData 將序列化這個目標物件的所需資料填入 (Populate) 於 SerializationInfo 物件。 (繼承自 ISerializable)。
公用方法 Remove(TKey) 將有指定索引鍵的元素從 IDictionary<TKey, TValue> 移除。 (繼承自 IDictionary<String, Object>)。
公用方法 Remove(T) ICollection<T> 移除特定物件的第一個相符項目。 (繼承自 ICollection<KeyValuePair<String, Object>>)。
公用方法 TryGetValue 取得與指定索引鍵關聯的值。 (繼承自 IDictionary<String, Object>)。

回頁首

備註

工作階段是跨越應用程式定義域和處理序進行序列化的物件。它們有字典行為,以允許將參數傳遞至 T4 引擎。它們會藉由比較它們以 GUID 的 ID 屬性允許不同實作型別比較直接進行比較。

請參閱

參考

Microsoft.VisualStudio.TextTemplating 命名空間