mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
71 lines
2.0 KiB
Objective-C
71 lines
2.0 KiB
Objective-C
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#ifndef MS_CUSTOM_PROPERTIES_H
|
|
#define MS_CUSTOM_PROPERTIES_H
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
/**
|
|
* Custom properties builder.
|
|
* Collects multiple properties to send in one log.
|
|
*/
|
|
@interface MSCustomProperties : NSObject
|
|
|
|
/**
|
|
* Set the specified property value with the specified key.
|
|
* If the properties previously contained a property for the key, the old value is replaced.
|
|
*
|
|
* @param key Key with which the specified value is to be set.
|
|
* @param value Value to be set with the specified key.
|
|
*
|
|
* @return This instance.
|
|
*/
|
|
- (instancetype)setString:(NSString *)value forKey:(NSString *)key;
|
|
|
|
/**
|
|
* Set the specified property value with the specified key.
|
|
* If the properties previously contained a property for the key, the old value is replaced.
|
|
*
|
|
* @param key Key with which the specified value is to be set.
|
|
* @param value Value to be set with the specified key.
|
|
*
|
|
* @return This instance.
|
|
*/
|
|
- (instancetype)setNumber:(NSNumber *)value forKey:(NSString *)key;
|
|
|
|
/**
|
|
* Set the specified property value with the specified key.
|
|
* If the properties previously contained a property for the key, the old value is replaced.
|
|
*
|
|
* @param key Key with which the specified value is to be set.
|
|
* @param value Value to be set with the specified key.
|
|
*
|
|
* @return This instance.
|
|
*/
|
|
- (instancetype)setBool:(BOOL)value forKey:(NSString *)key;
|
|
|
|
/**
|
|
* Set the specified property value with the specified key.
|
|
* If the properties previously contained a property for the key, the old value is replaced.
|
|
*
|
|
* @param key Key with which the specified value is to be set.
|
|
* @param value Value to be set with the specified key.
|
|
*
|
|
* @return This instance.
|
|
*/
|
|
- (instancetype)setDate:(NSDate *)value forKey:(NSString *)key;
|
|
|
|
/**
|
|
* Clear the property for the specified key.
|
|
*
|
|
* @param key Key whose mapping is to be cleared.
|
|
*
|
|
* @return This instance.
|
|
*/
|
|
- (instancetype)clearPropertyForKey:(NSString *)key;
|
|
|
|
@end
|
|
|
|
#endif
|