blob: 64b6e38cf176b7568ef1d6857d7dada6c3c99ee7 [file] [log] [blame]
/*=========================================================================
* Copyright (c) 2002-2014 Pivotal Software, Inc. All Rights Reserved.
* This product is protected by U.S. and international copyright
* and intellectual property laws. Pivotal products are covered by
* more patents listed at http://www.pivotal.io/patents.
*=========================================================================
*/
#include "gf_includes.hpp"
#include "CacheAttributesM.hpp"
#include "impl/ManagedString.hpp"
using namespace System;
namespace GemStone
{
namespace GemFire
{
namespace Cache
{
int32_t CacheAttributes::RedundancyLevel::get( )
{
return NativePtr->getRedundancyLevel( );
}
String^ CacheAttributes::Endpoints::get( )
{
return ManagedString::Get( NativePtr->getEndpoints( ) );
}
}
}
}