Amazon.Runtime.Internal.ClientContext.AddCustomAttributes C# (CSharp) Метод

AddCustomAttributes() публичный Метод

Adds the custom attributes to the Client Context.
public AddCustomAttributes ( string key, string value ) : void
key string Key.
value string Value.
Результат void
        public void AddCustomAttributes(string key, string value)
        {
            lock(_lock)
            {
                if (_custom == null)
                    _custom = new Dictionary<string, string>();

                _custom.Add(key,value);
            }
        }