TeamFoundationStrongBoxService.AddString Method
Add a string value to the strong box. The method sends the string as part of a single https request, and therefore should be small.
Namespace: Microsoft.TeamFoundation.Framework.Client
Assembly: Microsoft.TeamFoundation.Client (in Microsoft.TeamFoundation.Client.dll)
Syntax
'Declaration
Public Sub AddString ( _
drawerId As Guid, _
lookupKey As String, _
value As String _
)
public void AddString(
Guid drawerId,
string lookupKey,
string value
)
public:
void AddString(
Guid drawerId,
String^ lookupKey,
String^ value
)
member AddString :
drawerId:Guid *
lookupKey:string *
value:string -> unit
public function AddString(
drawerId : Guid,
lookupKey : String,
value : String
)
Parameters
drawerId
Type: System.GuidThe unique identifier returned from CreateDrawer or UnlockDrawer.
lookupKey
Type: System.StringThe identifier that is used to look up the value in the drawer.
value
Type: System.StringThe string to add to the drawer.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.