TeamPropertiesView Class
Base abstract class for all team view objects. Team view objects follows facade pattern. In this regard team view objects provide easy way to access complex or domain specific properties that require further insight on how they are stored in the team property bag and how they should be presented to the outside world. The view objects can consume other view objects, such as a view object that manages Agile experience specific team properties can use another view object that manages work item tracking related properties, i.e. which work item type in a project represents bug work items, for the team.
Inheritance Hierarchy
System.Object
Microsoft.TeamFoundation.Framework.Server.IdentityPropertiesView
Microsoft.TeamFoundation.Server.Core.TeamPropertiesView
Namespace: Microsoft.TeamFoundation.Server.Core
Assembly: Microsoft.TeamFoundation.Server.Core (in Microsoft.TeamFoundation.Server.Core.dll)
Syntax
'Declaration
Public MustInherit Class TeamPropertiesView _
Inherits IdentityPropertiesView
public abstract class TeamPropertiesView : IdentityPropertiesView
public ref class TeamPropertiesView abstract : public IdentityPropertiesView
[<AbstractClass>]
type TeamPropertiesView =
class
inherit IdentityPropertiesView
end
public abstract class TeamPropertiesView extends IdentityPropertiesView
The TeamPropertiesView type exposes the following members.
Constructors
Name | Description | |
---|---|---|
TeamPropertiesView |
Top
Properties
Name | Description | |
---|---|---|
EffectiveNamespace | Effective property name prefix for view property methods. Its value is: Namespace + NamespaceSuffix (Inherited from IdentityPropertiesView.) | |
Identity | (Inherited from IdentityPropertiesView.) | |
Namespace | Property namespace for the view properties. By default the full name of view type will be the prefix for property names. (Inherited from IdentityPropertiesView.) | |
NamespaceSuffix | Extra namespace modifier for view customization (Inherited from IdentityPropertiesView.) | |
ReadPropertyScope | ||
Team | The team associated with the view instance. |
Top
Methods
Name | Description | |
---|---|---|
ClearPropertiesUnder(String) | (Inherited from IdentityPropertiesView.) | |
ClearPropertiesUnder(IdentityPropertyScope, String) | (Inherited from IdentityPropertiesView.) | |
ClearViewProperties() | (Inherited from IdentityPropertiesView.) | |
ClearViewProperties(IdentityPropertyScope) | (Inherited from IdentityPropertiesView.) | |
EnsureIdentityAndProperties | (Inherited from IdentityPropertiesView.) | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetProperties() | Property bag. This could be useful, for example if consumer has to iterate through current properties and modify / remove some based on pattern matching property names. (Inherited from IdentityPropertiesView.) | |
GetProperties(IdentityPropertyScope) | Property bag. This could be useful, for example if consumer has to iterate through current properties and modify / remove some based on pattern matching property names. (Inherited from IdentityPropertiesView.) | |
GetPropertiesStartsWith(String) | (Inherited from IdentityPropertiesView.) | |
GetPropertiesStartsWith(IdentityPropertyScope, String) | (Inherited from IdentityPropertiesView.) | |
GetProperty(String) | Property accessor. Will throw if not found. (Inherited from IdentityPropertiesView.) | |
GetProperty(IdentityPropertyScope, String) | Property accessor. Will throw if not found. (Inherited from IdentityPropertiesView.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
GetViewProperties() | Property bag. This could be useful, for example if consumer has to iterate through current properties and modify / remove some based on pattern matching property names. (Inherited from IdentityPropertiesView.) | |
GetViewProperties(IdentityPropertyScope) | Property bag. This could be useful, for example if consumer has to iterate through current properties and modify / remove some based on pattern matching property names. (Inherited from IdentityPropertiesView.) | |
GetViewProperty(String) | Gets a property value with the view namespace. (Inherited from IdentityPropertiesView.) | |
GetViewProperty(IdentityPropertyScope, String) | Gets a property value with the view namespace. (Inherited from IdentityPropertiesView.) | |
GetViewPropertyFilters | (Inherited from IdentityPropertiesView.) | |
Initialize(TeamFoundationRequestContext, TeamFoundationTeam) | ||
Initialize(TeamFoundationRequestContext, Guid, String) | (Inherited from IdentityPropertiesView.) | |
Initialize(TeamFoundationRequestContext, IdentityPropertiesView, String) | (Overrides IdentityPropertiesView.Initialize(TeamFoundationRequestContext, IdentityPropertiesView, String).) | |
Initialize(TeamFoundationRequestContext, TeamFoundationIdentity, IEnumerable<String>, String, IdentityPropertyScope) | (Inherited from IdentityPropertiesView.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
MergePropertyFilters | (Inherited from IdentityPropertiesView.) | |
RemoveProperty(String) | Remove property, if it exists. (Inherited from IdentityPropertiesView.) | |
RemoveProperty(IdentityPropertyScope, String) | Remove property, if it exists. (Inherited from IdentityPropertiesView.) | |
RemoveViewProperty(String) | Remove view property, if it exists. (Inherited from IdentityPropertiesView.) | |
RemoveViewProperty(IdentityPropertyScope, String) | Remove view property, if it exists. (Inherited from IdentityPropertiesView.) | |
SetProperty(String, Object) | Sets a property, will overwrite if already set. (Inherited from IdentityPropertiesView.) | |
SetProperty(IdentityPropertyScope, String, Object) | Sets a property, will overwrite if already set. (Inherited from IdentityPropertiesView.) | |
SetViewProperty(String, Object) | Sets a property value with the view namespace. (Inherited from IdentityPropertiesView.) | |
SetViewProperty(IdentityPropertyScope, String, Object) | Sets a property value with the view namespace. (Inherited from IdentityPropertiesView.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) | |
TryGetProperty(String, Object%) | Property accessor. Will return null if not found. (Inherited from IdentityPropertiesView.) | |
TryGetProperty(IdentityPropertyScope, String, Object%) | (Inherited from IdentityPropertiesView.) | |
TryGetViewProperty(String, Object%) | Try get a property value with the view namespace. (Inherited from IdentityPropertiesView.) | |
TryGetViewProperty(IdentityPropertyScope, String, Object%) | Try get a property value with the view namespace. (Inherited from IdentityPropertiesView.) | |
Update | Persist Team updates. (Inherited from IdentityPropertiesView.) |
Top
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.